CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EventHeader.h
Go to the documentation of this file.
1 #ifndef EVTHDR_H
2 #define EVTHDR_H
3 
5 #include "TChain.h"
6 
7 
14 class EventHeader {
15 public:
16  EventHeader();
17  ~EventHeader();
18 
19  void setup(TTree* tree);
20 
22  void analyze(edm::Event const& iEvent, TTree* tree);
23 
24 private:
25 
26  // Tree variables
27  int fRun;
28  int fEvent;
30  int fBx;
31  int fOrbit;
32 
33 
34  // input variables
35  bool _Debug;
36 
37  // trigger names
38 };
39 
40 #endif
void analyze(edm::Event const &iEvent, TTree *tree)
Definition: EventHeader.cc:38
int iEvent
Definition: GenABIO.cc:243
void setup(TTree *tree)
Definition: EventHeader.cc:22
int fLumiBlock
Definition: EventHeader.h:29