ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Mods/interface/ElectronIDMod.h
Revision: 1.22
Committed: Wed Aug 5 20:09:45 2009 UTC (15 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_011, Mit_010a
Changes since 1.21: +13 -14 lines
Log Message:
Coding conventions plus speedup.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.22 // $Id: ElectronIDMod.h,v 1.21 2009/08/04 08:23:18 peveraer Exp $
3 loizides 1.1 //
4     // ElectronIDMod
5     //
6 loizides 1.4 // This module applies electron identification criteria and exports a pointer to a collection
7 loizides 1.5 // of "good electrons" according to the specified identification scheme.
8 loizides 1.1 //
9 loizides 1.13 // See http://indico.cern.ch/contributionDisplay.py?contribId=1&confId=42251
10     //
11 loizides 1.4 // Authors: S.Xie, C.Loizides
12 loizides 1.1 //--------------------------------------------------------------------------------------------------
13    
14 loizides 1.4 #ifndef MITPHYSICS_MODS_ELECTRONIDMOD_H
15     #define MITPHYSICS_MODS_ELECTRONIDMOD_H
16 loizides 1.1
17     #include "MitAna/TreeMod/interface/BaseMod.h"
18 loizides 1.20 #include "MitAna/DataTree/interface/ElectronFwd.h"
19     #include "MitAna/DataTree/interface/VertexFwd.h"
20     #include "MitAna/DataTree/interface/DecayParticleFwd.h"
21 loizides 1.1
22     namespace mithep
23     {
24     class ElectronIDMod : public BaseMod
25     {
26     public:
27     ElectronIDMod(const char *name="ElectronIDMod",
28 loizides 1.4 const char *title="Electron identification module");
29    
30 loizides 1.13 Bool_t GetApplyConversionFilter() const { return fApplyConvFilter; }
31 ceballos 1.14 Bool_t GetApplyD0Cut() const { return fApplyD0Cut; }
32 loizides 1.8 Double_t GetCaloIsoCut() const { return fCaloIsolationCut; }
33     Double_t GetEcalJurIsoCut() const { return fEcalJuraIsoCut; }
34     const char *GetGoodName() const { return GetGoodElectronsName(); }
35     const char *GetGoodElectronsName() const { return fGoodElectronsName; }
36     Double_t GetHcalIsoCut() const { return fHcalIsolationCut; }
37     Double_t GetIDLikelihoodCut() const { return fIDLikelihoodCut; }
38     const char *GetIDType() const { return fElectronIDType; }
39     const char *GetInputName() const { return fElectronBranchName; }
40     const char *GetIsoType() const { return fElectronIsoType; }
41     const char *GetOutputName() const { return GetGoodElectronsName(); }
42     Double_t GetPtMin() const { return fElectronPtMin; }
43 loizides 1.22 Bool_t GetReverseD0Cut() const { return fReverseD0Cut; }
44     Bool_t GetReverseIsoCut() const { return fReverseIsoCut; }
45 loizides 1.8 Double_t GetTrackIsoCut() const { return fTrackIsolationCut; }
46 loizides 1.13 void SetApplyConversionFilter(Bool_t b) { fApplyConvFilter = b; }
47 ceballos 1.14 void SetApplyD0Cut(Bool_t b) { fApplyD0Cut = b; }
48 loizides 1.8 void SetCaloIsoCut(Double_t cut) { fCaloIsolationCut = cut; }
49 loizides 1.22 void SetD0Cut(Double_t cut) { fD0Cut = cut; }
50 loizides 1.8 void SetEcalJurIsoCut(Double_t cut) { fEcalJuraIsoCut = cut; }
51 loizides 1.22 void SetGoodElectronsName(const char *n) { fGoodElectronsName = n; }
52 loizides 1.8 void SetGoodName(const char *n) { SetGoodElectronsName(n); }
53     void SetHcalIsoCut(Double_t cut) { fHcalIsolationCut = cut; }
54     void SetIDLikelihoodCut(Double_t cut) { fIDLikelihoodCut = cut; }
55     void SetIDType(const char *type) { fElectronIDType = type; }
56     void SetInputName(const char *n) { fElectronBranchName = n; }
57     void SetIsoType(const char *type) { fElectronIsoType = type; }
58     void SetOutputName(const char *n) { SetGoodElectronsName(n); }
59     void SetPtMin(Double_t pt) { fElectronPtMin = pt; }
60 loizides 1.22 void SetReverseD0Cut(Bool_t b) { fReverseD0Cut = b; }
61     void SetReverseIsoCut(Bool_t b) { fReverseIsoCut = b; }
62 loizides 1.8 void SetTrackIsoCut(Double_t cut) { fTrackIsolationCut = cut; }
63 loizides 1.4
64     enum EElIdType {
65     kIdUndef = 0, //not defined
66     kTight, //"Tight"
67     kLoose, //"Loose"
68     kLikelihood, //"Likelihood"
69 loizides 1.9 kNoId, //"NoId"
70 loizides 1.22 kCustomIdLoose, //"CustomLoose"
71 peveraer 1.21 kCustomIdTight //"CustomTight"
72 loizides 1.4 };
73 loizides 1.22
74 loizides 1.4 enum EElIsoType {
75     kIsoUndef = 0, //not defined
76     kTrackCalo, //"TrackCalo"
77     kTrackJura, //"TrackJura"
78     kTrackJuraSliding, //"TrackJuraSliding"
79     kNoIso, //"NoIso"
80     kCustomIso //"Custom"
81     };
82    
83 loizides 1.1 protected:
84 loizides 1.22 Bool_t PassCustomID(const Electron *el) const;
85 ceballos 1.12 void Process();
86 loizides 1.22 void SetCustomIDCuts(EElIdType idt);
87 ceballos 1.12 void SlaveBegin();
88 loizides 1.22
89 loizides 1.7
90 ceballos 1.12 TString fElectronBranchName; //name of electron collection (input)
91     TString fConversionBranchName; //name of electron collection (input)
92 loizides 1.16 TString fGoodElectronsName; //name of exported "good electrons" col
93 ceballos 1.12 TString fVertexName; //name of vertex collection
94     TString fElectronIDType; //type of electron ID we impose
95     TString fElectronIsoType; //type of electron Isolation we impose
96     Double_t fElectronPtMin; //min pt cut
97     Double_t fIDLikelihoodCut; //cut value for ID likelihood
98     Double_t fTrackIsolationCut; //cut value for track isolation
99     Double_t fCaloIsolationCut; //cut value for calo isolation
100     Double_t fEcalJuraIsoCut; //cut value for ecal jurassic isolation
101     Double_t fHcalIsolationCut; //cut value for hcal isolation
102 loizides 1.13 Bool_t fApplyConvFilter; //whether remove conversions
103 loizides 1.16 Bool_t fApplyD0Cut; //whether apply d0 cut
104 loizides 1.13 Double_t fD0Cut; //max d0
105 loizides 1.19 Bool_t fReverseIsoCut; //apply reversion iso cut (default=0)
106     Bool_t fReverseD0Cut; //apply reversion d0 cut (default=0)
107 loizides 1.13 EElIdType fElIdType; //!identification scheme
108     EElIsoType fElIsoType; //!isolation scheme
109 ceballos 1.12 const ElectronCol *fElectrons; //!electron collection
110     const DecayParticleCol *fConversions; //!conversion collection
111 loizides 1.16 const VertexCol *fVertices; //!vertices branches
112 loizides 1.22 Double_t fCuts[6][8]; //!custom id cuts
113 ceballos 1.17
114 loizides 1.8 ClassDef(ElectronIDMod, 1) // Electron identification module
115 loizides 1.1 };
116     }
117     #endif