10 |
|
#define TREEFILLER_FILLERMETAINFOS_H |
11 |
|
|
12 |
|
#include "FWCore/ParameterSet/interface/ParameterSet.h" |
13 |
< |
#include "MitAna/DataUtil/interface/TreeWriter.h" |
14 |
< |
#include "MitAna/DataTree/interface/GlobalMuon.h" |
15 |
< |
#include "MitAna/DataTree/interface/Muon.h" |
16 |
< |
#include "MitAna/DataTree/interface/Track.h" |
17 |
< |
#include "MitAna/DataTree/interface/Array.h" |
18 |
< |
#include "MitProd/TreeService/interface/TreeService.h" |
13 |
> |
#include "MitAna/DataTree/interface/EventHeader.h" |
14 |
> |
#include "MitAna/DataTree/interface/RunInfo.h" |
15 |
|
#include "MitProd/TreeFiller/interface/BaseFiller.h" |
16 |
|
|
17 |
|
namespace mithep |
22 |
|
FillerMetaInfos(const edm::ParameterSet&); |
23 |
|
~FillerMetaInfos(); |
24 |
|
|
25 |
< |
void BookDataBlock(TreeWriter *tws); |
25 |
> |
void BookDataBlock(TreeWriter &tws); |
26 |
|
void FillDataBlock(const edm::Event&, const edm::EventSetup&); |
27 |
< |
void ResolveLinks (const edm::Event&, const edm::EventSetup&); |
27 |
> |
void FillRunInfo(const edm::Event&, const edm::EventSetup&); |
28 |
|
|
29 |
|
private: |
30 |
< |
|
30 |
> |
std::string evtName_; |
31 |
> |
std::string runName_; |
32 |
> |
EventHeader *eventHeader_; |
33 |
> |
RunInfo *runInfo_; |
34 |
> |
TTree *runTree_; |
35 |
> |
Int_t runEntries_; |
36 |
> |
std::map<UInt_t,Int_t> runmap_; |
37 |
|
}; |
38 |
|
} |
39 |
|
#endif |