ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerMetaInfos.h
Revision: 1.8
Committed: Mon Aug 18 11:16:11 2008 UTC (16 years, 8 months ago) by sixie
Content type: text/plain
Branch: MAIN
Changes since 1.7: +2 -1 lines
Log Message:
Add hltactive.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerMetaInfos.h,v 1.7 2008/07/31 12:34:04 loizides Exp $
3 //
4 // FillerMetaInfos
5 //
6 // Authors: C.Loizides
7 //--------------------------------------------------------------------------------------------------
8
9 #ifndef TREEFILLER_FILLERMETAINFOS_H
10 #define TREEFILLER_FILLERMETAINFOS_H
11
12 #include "FWCore/ParameterSet/interface/ParameterSet.h"
13 #include "MitProd/TreeFiller/interface/BaseFiller.h"
14
15 namespace mithep
16 {
17 class RunInfo;
18 class EventHeader;
19 class LAHeader;
20
21 class FillerMetaInfos : public BaseFiller
22 {
23 public:
24 FillerMetaInfos(const edm::ParameterSet &cfg, bool active=1);
25 ~FillerMetaInfos();
26
27 void BookDataBlock(TreeWriter &tws);
28 void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
29 void FillRunInfo(const edm::Event &e, const edm::EventSetup &es);
30 void FillHltInfo(const edm::Event &e, const edm::EventSetup &es);
31
32 private:
33 Bool_t hltActive_; //=true if HLT info are filled
34 std::string evtName_; //event branch name
35 std::string runName_; //run info branch name
36 std::string lahName_; //look-ahead header branch name
37 std::string hltName_; //todo
38 std::string l1tName_; //todo
39 TreeWriter *tws_; //tree writer (not owned)
40 EventHeader *eventHeader_; //event header
41 LAHeader *evtLAHeader_; //look-ahead event header
42 RunInfo *runInfo_; //run info block
43 TTree *runTree_; //run info tree (not owned)
44 TTree *laTree_; //look ahead tree (not owned)
45 Int_t runEntries_; //number of run info entries
46 UShort_t fileNum_; //file number of current file
47 std::map<UInt_t,Int_t> runmap_; //map between run number and entry number
48
49 static bool instance_; //=true when one active instance
50 };
51 }
52 #endif