ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerMetaInfos.h
Revision: 1.1
Committed: Thu Jun 19 16:53:43 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added FillerMetaInfos. Reworked BaseFiller.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerMetaInfos.h,v 1.3 2008/06/18 19:17:21 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 "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"
19 #include "MitProd/TreeFiller/interface/BaseFiller.h"
20
21 namespace mithep
22 {
23 class FillerMetaInfos : public BaseFiller
24 {
25 public:
26 FillerMetaInfos(const edm::ParameterSet&);
27 ~FillerMetaInfos();
28
29 void BookDataBlock(TreeWriter *tws);
30 void FillDataBlock(const edm::Event&, const edm::EventSetup&);
31 void ResolveLinks (const edm::Event&, const edm::EventSetup&);
32
33 private:
34
35 };
36 }
37 #endif