Plug-n-Play -- configuration at the macro level, cont’
anal = new StHbtSectoredAnalysis;
// 1) set the Event cuts for the analysis
evcut = new mikesEventCut;
evcut->SetEventMult(0,10000);
evcut->SetVertZPos(-35.0,35.0);
anal->SetEventCut(evcut);
// 2) set the Track (particle) cuts for the analysis
trkcut = new mikesTrackCut;
trkcut->SetNSigmaPion(-3.0,3.0);
trkcut->SetNSigmaKaon(-1000.0,1000.0);
trkcut->SetNSigmaProton(-1000.0,1000.0);
trkcut->SetRapidity(-1.0,1.0);
anal->SetFirstParticleCut(trkcut);
// NOTE - identical particle HBT
anal->SetSecondParticleCut(trkcut);
Maker chain (only StHbtMaker)