ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerElectrons.h
Revision: 1.17
Committed: Mon Jun 15 15:00:24 2009 UTC (15 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009c, Mit_009b
Changes since 1.16: +3 -7 lines
Log Message:
Added proper fwd defs plus split up complilation of MitAna/DataTree LinkDefs.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerElectrons.h,v 1.16 2009/03/22 10:00:45 loizides 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 void FillDataBlock(const edm::Event &e,
28 const edm::EventSetup &es);
29
30 private:
31 std::string edmName_; //edm name of electrons collection
32 std::string mitName_; //mit name of Electrons collection
33 std::string gsfTrackMapName_; //name of imported map wrt gsf trks
34 std::string trackerTrackMapName_; //name of imported map wrt trk trks
35 std::string barrelEcalRecHitName_; //name of barrel ecal rechits
36 std::string endcapEcalRecHitName_; //name of endcap ecal rechits
37 std::string barrelSuperClusterName_; //name of barrel super clusters
38 std::string endcapSuperClusterName_; //name of endcap super clusters
39 std::string barrelBasicClusterName_; //name of barrel basic clusters
40 std::string endcapBasicClusterName_; //name of endcap basic clusters
41 std::string barrelSuperClusterMapName_; //name of imp. map wrt barrel sclus
42 std::string endcapSuperClusterMapName_; //name of imp. map wrt endcap sclus
43 std::string eIDCutBasedTightName_; //name of tight cut eID algo
44 std::string eIDCutBasedLooseName_; //name of loose cut eID algo
45 std::string eIDLikelihoodName_; //name of likelihood eID algo
46 std::string eIDNeuralNetName_; //name of neural net eID algo
47 std::string isoTrackColName_; //name of iso track collection
48 std::string isoCaloTowerColName_; //name of iso CaloTower collection
49 std::string ecalJurassicIsoName_; //name of Ecal Jurassic isolation
50 std::string hcalJurassicIsoName_; //name of Hcal Jurassic isolation
51 std::string trackerIsoName_; //name of tracker isolation
52 std::string gsfTrackAssocName_; //name of gsf track association map
53 mithep::ElectronArr *electrons_; //array of Electrons
54 const mithep::TrackMap *gsfTrackMap_; //map wrt gsf tracks
55 const mithep::TrackMap *trackerTrackMap_; //map wrt tracker tracks
56 const mithep::SuperClusterMap *barrelSuperClusterMap_; //map wrt barrel super clusters
57 const mithep::SuperClusterMap *endcapSuperClusterMap_; //map wrt endcap super clusters
58 };
59 }
60 #endif