ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerElectrons.h
Revision: 1.23
Committed: Mon Oct 18 01:34:47 2010 UTC (14 years, 6 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015
Changes since 1.22: +3 -1 lines
Log Message:
fill corrected expected hits inner, ambiguous gsf tracks

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 bendavid 1.23 // $Id: FillerElectrons.h,v 1.22 2010/05/06 17:31:23 bendavid Exp $
3 loizides 1.1 //
4     // FillerElectrons
5     //
6 loizides 1.14 // Implementation of a filler to fill EDM electrons into our mithep::Electron data structure.
7 loizides 1.1 //
8 sixie 1.6 // Authors: J.Bendavid, S.Xie
9 loizides 1.1 //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.9 #ifndef MITPROD_TREEFILLER_FILLERELECTRONS_H
12     #define MITPROD_TREEFILLER_FILLERELECTRONS_H
13 loizides 1.1
14 loizides 1.17 #include "MitAna/DataTree/interface/ElectronFwd.h"
15     #include "MitProd/TreeFiller/interface/AssociationMaps.h"
16 loizides 1.1 #include "MitProd/TreeFiller/interface/BaseFiller.h"
17    
18     namespace mithep
19     {
20     class FillerElectrons : public BaseFiller
21     {
22     public:
23 loizides 1.13 FillerElectrons(const edm::ParameterSet &cfg, const char *name, bool active=1);
24 loizides 1.1 ~FillerElectrons();
25    
26 bendavid 1.21 void BookDataBlock(TreeWriter &tws);
27 loizides 1.16 void FillDataBlock(const edm::Event &e,
28     const edm::EventSetup &es);
29 loizides 1.1
30     private:
31 loizides 1.9 std::string edmName_; //edm name of electrons collection
32 bendavid 1.23 std::string expectedHitsName_; //edm name of corrected expected hits valuemap
33 loizides 1.15 std::string mitName_; //mit name of Electrons collection
34 loizides 1.9 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 loizides 1.14 std::string endcapSuperClusterMapName_; //name of imp. map wrt endcap sclus
38 bendavid 1.18 std::string pfSuperClusterMapName_; //name of imp. map wrt pflow sclus
39 loizides 1.9 std::string eIDCutBasedTightName_; //name of tight cut eID algo
40     std::string eIDCutBasedLooseName_; //name of loose cut eID algo
41 bendavid 1.23 std::string eIDLikelihoodName_; //name of likelihood cut eID algo
42 bendavid 1.22 std::string pvEdmName_; //name of primary vertex collection
43     std::string pvBSEdmName_; //name of bs-constrained pv collection
44 loizides 1.9 mithep::ElectronArr *electrons_; //array of Electrons
45 bendavid 1.11 const mithep::TrackMap *gsfTrackMap_; //map wrt gsf tracks
46 loizides 1.9 const mithep::TrackMap *trackerTrackMap_; //map wrt tracker tracks
47     const mithep::SuperClusterMap *barrelSuperClusterMap_; //map wrt barrel super clusters
48 bendavid 1.18 const mithep::SuperClusterMap *endcapSuperClusterMap_; //map wrt endcap super clusters
49     const mithep::SuperClusterMap *pfSuperClusterMap_; //map wrt pflow super clusters
50 loizides 1.1 };
51     }
52     #endif