#ifndef ProofEventProc_h #define ProofEventProc_h #include #include #include "Read_data.h" #include class TH1F; class TH2F; class ProofEventProc : public TSelector { public : TH2F* Intersection_plot_T0A; TH2F* Intersection_plot_T0C; TLegend* leg; TH2F* v2_LYZ; TH2F* v2_Two; TH2F* v2_Four; TH2F* v2_Event; Header* h; TClonesArray* p; TTree* t; TParticlePDG* pdg; TDatabasePDG* pdgDb; ProofEventProc() { } void Begin(TTree *tree); void SlaveBegin(void); bool Process(Long64_t entry); void Terminate(void); }; #endif