00001 #ifndef TAUSF_H
00002 #define TAUSF_H
00003
00004 #include "CommonSF.h"
00005
00006 namespace TauCorrUncert {
00007
00008 typedef enum {
00009 IDNONE,
00010 BDTLOOSE,
00011 BDTMEDIUM,
00012 BDTTIGHT,
00013 BDTFAIL,
00014 BDTOTHER,
00015 LLHLOOSE,
00016 LLHMEDIUM,
00017 LLHTIGHT,
00018 LLHFAIL
00019 } ID;
00020
00021 typedef enum {
00022 NONE,
00023 LOOSE,
00024 MEDIUM,
00025 TIGHT,
00026 OTHER
00027 } EVETO;
00028
00029 typedef enum {
00030 OLRNONE,
00031 LOOSEPP,
00032 MEDIUMPP,
00033 TIGHTPP,
00034 OLROTHER
00035 } OLR;
00036
00037
00038 class TauSF : public CommonSF
00039 {
00040
00041 public:
00042
00043 TauSF(const std::string& sharepath,
00044 bool debug=false);
00045
00046 ~TauSF()
00047 {
00048 delete m_mEVeto;
00049 delete m_mEVeto_3P;
00050 }
00051
00052 double GetIDSF(ID level,
00053 double eta,
00054 int prongness,
00055 double pT=30);
00056
00057 double GetIDSysUnc(ID level,
00058 double eta,
00059 int prongness,
00060 double pT=30);
00061
00062 double GetIDStatUnc(ID level,
00063 double eta,
00064 int prongness,
00065 double pT=30);
00066
00067 double GetExclIDSF(ID level,
00068 double eta,
00069 int prongness,
00070 double pT=30);
00071
00072 double GetExclIDSysUnc(ID level,
00073 double eta,
00074 int prongness,
00075 double pT=30);
00076
00077 double GetExclIDStatUnc(ID level,
00078 double eta,
00079 int prongness,
00080 double pT=30);
00081
00082 double GetEVetoSF(float trackEta,
00083 ID level,
00084 EVETO evLevel,
00085 OLR olr);
00086
00087 double GetEVetoSFUnc(float trackEta,
00088 ID level,
00089 EVETO evLevel,
00090 OLR olr,
00091 int direction);
00092
00093 double GetEVetoSF(float trackEta,
00094 int nTrack,
00095 ID level,
00096 EVETO evLevel,
00097 OLR olr);
00098
00099 double GetEVetoSFUnc(float trackEta,
00100 int nTrack,
00101 ID level,
00102 EVETO evLevel,
00103 OLR olr,
00104 int direction);
00105
00106 void SwitchOnPtBinnedIDSF(bool bSwitch = true);
00107 void SwitchOnEtaBinnedIDSF(bool bSwitch = true);
00108 void SwitchOnHighPtUncert(bool bSwitch = true);
00109
00110 private:
00111 std::string ConvertEtaToString(const float& fEta);
00112 std::string ConvertIDToString(ID level);
00113 std::string ConvertEVetoToString(EVETO level);
00114 std::string ConvertOLRToString(OLR level);
00115 void checkTrackEtaValidity(float& trackEta);
00116 float GetIDValue(const std::string& sWorkingPoint, const float& fPt);
00117
00118 SFMAP* m_mEVeto;
00119 SFMAP* m_mEVeto_3P;
00120 bool m_bUseHighPtUncert;
00121 std::string m_sIDpt;
00122 bool m_bUseInclusiveEta;
00123 ClassDef(TauSF, 1)
00124 };
00125 }
00126
00127 #endif // TAUSF_H
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302