#ifndef DSelector_cascade_inclusive_h #define DSelector_cascade_inclusive_h #include #include "DSelector/DSelector.h" #include "DSelector/DHistogramActions.h" #include "DSelector/DCutActions.h" #include "TH1I.h" #include "TH2I.h" class DSelector_cascade_inclusive : public DSelector { public: DSelector_cascade_inclusive(TTree* locTree = NULL) : DSelector(locTree){} virtual ~DSelector_cascade_inclusive(){} void Init(TTree *tree); Bool_t Process(Long64_t entry); private: void Get_ComboWrappers(void); void Finalize(void); // BEAM POLARIZATION INFORMATION UInt_t dPreviousRunNumber; bool dIsPolarizedFlag; //else is AMO bool dIsPARAFlag; //else is PERP or AMO double dBeamBunchPeriod; //CREATE REACTION-SPECIFIC PARTICLE ARRAYS //Step 0 DParticleComboStep* dStep0Wrapper; DBeamParticle* dComboBeamWrapper; DChargedTrackHypothesis* dKPlus1Wrapper; DChargedTrackHypothesis* dKPlus2Wrapper; //Step 1 DParticleComboStep* dStep1Wrapper; DKinematicData* dDecayingXiMinusWrapper; DChargedTrackHypothesis* dPiMinus1Wrapper; //Step 2 DParticleComboStep* dStep2Wrapper; DKinematicData* dDecayingLambdaWrapper; DChargedTrackHypothesis* dProtonWrapper; DChargedTrackHypothesis* dPiMinus2Wrapper; // DEFINE YOUR HISTOGRAMS HERE TH2D* dMissMassOffKPluses_BestCombo_RFSignal; TH2D* dMissMassOffKPluses_BestCombo_RFSideband; TH2D* dMissMassOffKPluses_BestCombo_RFCut; ClassDef(DSelector_cascade_inclusive, 0); }; void DSelector_cascade_inclusive::Get_ComboWrappers(void) { //Step 0 dStep0Wrapper = dComboWrapper->Get_ParticleComboStep(0); dComboBeamWrapper = static_cast(dStep0Wrapper->Get_InitialParticle()); dKPlus1Wrapper = static_cast(dStep0Wrapper->Get_FinalParticle(0)); dKPlus2Wrapper = static_cast(dStep0Wrapper->Get_FinalParticle(1)); //Step 1 dStep1Wrapper = dComboWrapper->Get_ParticleComboStep(1); dDecayingXiMinusWrapper = dStep1Wrapper->Get_InitialParticle(); dPiMinus1Wrapper = static_cast(dStep1Wrapper->Get_FinalParticle(1)); //Step 2 dStep2Wrapper = dComboWrapper->Get_ParticleComboStep(2); dDecayingLambdaWrapper = dStep2Wrapper->Get_InitialParticle(); dProtonWrapper = static_cast(dStep2Wrapper->Get_FinalParticle(0)); dPiMinus2Wrapper = static_cast(dStep2Wrapper->Get_FinalParticle(1)); } #endif // DSelector_cascade_inclusive_h