CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/HLTrigger/HLTanalyzers/interface/EventHeader.h

Go to the documentation of this file.
00001 #ifndef EVTHDR_H
00002 #define EVTHDR_H
00003 
00004 #include "FWCore/Framework/interface/Event.h"
00005 #include "TChain.h"
00006 
00007 
00014 class EventHeader {
00015 public:
00016   EventHeader(); 
00017         ~EventHeader();
00018 
00019   void setup(TTree* tree);
00020 
00022   void analyze(edm::Event const& iEvent, TTree* tree);
00023 
00024 private:
00025 
00026   // Tree variables
00027         int fRun;
00028         int fEvent;
00029         int fLumiBlock;
00030         int fBx;
00031         int fOrbit;
00032 
00033 
00034   // input variables
00035   bool _Debug;
00036 
00037   // trigger names
00038 };
00039 
00040 #endif