ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerElectrons.h
Revision: 1.20
Committed: Fri Sep 25 08:42:50 2009 UTC (15 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_013pre1, Mit_012i, Mit_012h, Mit_012g, Mit_012f, Mit_012e, Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a
Changes since 1.19: +3 -2 lines
Log Message:
Extended interface of BookDataBlock to contain event setup.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerElectrons.h,v 1.19 2009/07/07 08:32:26 bendavid Exp $
3 //
4 // FillerElectrons
5 //
6 // Implementation of a filler to fill EDM electrons into our mithep::Electron data structure.
7 //
8 // Authors: J.Bendavid, S.Xie
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITPROD_TREEFILLER_FILLERELECTRONS_H
12 #define MITPROD_TREEFILLER_FILLERELECTRONS_H
13
14 #include "MitAna/DataTree/interface/ElectronFwd.h"
15 #include "MitProd/TreeFiller/interface/AssociationMaps.h"
16 #include "MitProd/TreeFiller/interface/BaseFiller.h"
17
18 namespace mithep
19 {
20 class FillerElectrons : public BaseFiller
21 {
22 public:
23 FillerElectrons(const edm::ParameterSet &cfg, const char *name, bool active=1);
24 ~FillerElectrons();
25
26 void BookDataBlock(TreeWriter &tws,
27 const edm::EventSetup &es);
28 void FillDataBlock(const edm::Event &e,
29 const edm::EventSetup &es);
30
31 private:
32 std::string edmName_; //edm name of electrons collection
33 std::string mitName_; //mit name of Electrons collection
34 std::string gsfTrackMapName_; //name of imported map wrt gsf trks
35 std::string trackerTrackMapName_; //name of imported map wrt trk trks
36 std::string barrelSuperClusterMapName_; //name of imp. map wrt barrel sclus
37 std::string endcapSuperClusterMapName_; //name of imp. map wrt endcap sclus
38 std::string pfSuperClusterMapName_; //name of imp. map wrt pflow sclus
39 std::string eIDCutBasedTightName_; //name of tight cut eID algo
40 std::string eIDCutBasedLooseName_; //name of loose cut eID algo
41 mithep::ElectronArr *electrons_; //array of Electrons
42 const mithep::TrackMap *gsfTrackMap_; //map wrt gsf tracks
43 const mithep::TrackMap *trackerTrackMap_; //map wrt tracker tracks
44 const mithep::SuperClusterMap *barrelSuperClusterMap_; //map wrt barrel super clusters
45 const mithep::SuperClusterMap *endcapSuperClusterMap_; //map wrt endcap super clusters
46 const mithep::SuperClusterMap *pfSuperClusterMap_; //map wrt pflow super clusters
47 };
48 }
49 #endif