ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/interface/Objects.hh
Revision: 1.8
Committed: Thu Apr 29 09:33:48 2010 UTC (15 years ago) by amagnan
Content type: text/plain
Branch: MAIN
Changes since 1.7: +2 -1 lines
Log Message:
modifications for 36X

File Contents

# Content
1 #ifndef HbbAnalysis_Objects_hh
2 #define HbbAnalysis_Objects_hh
3
4 #include <vector>
5 #include <string>
6 #include <iostream>
7
8 #include "TLorentzVector.h"
9
10 namespace HbbAnalysis {
11
12 struct MCVars {
13 unsigned int index;
14 double E;
15 double pT;
16 double eta;
17 double phi;
18 int pdgId;
19 int status;
20 };
21
22 struct GenVars {
23 bool valid;
24 double E;
25 double pT;
26 double eta;
27 double phi;
28 int charge;
29 int pdgId;
30 int status;
31 double mass;
32 double vx;
33 double vy;
34 double vz;
35 };
36
37 struct BaseVars {
38 double E;
39 double pT;
40 double eta;
41 double phi;
42 float charge;
43 double vx;
44 double vy;
45 double vz;
46 };
47
48 struct SCVars {
49 float sigmaEtaEta;
50 float sigmaIEtaIEta;
51 float e1x5;
52 float e2x5Max;
53 float e5x5;
54 float eOverP;
55 };
56
57 struct EleIsoVars {
58 float calo;
59 float track;
60 float ecal;
61 float hcal;
62 };
63
64 struct EleIDVars{
65 std::vector<std::pair<std::string,float> > electronIDs;
66 float hOverE;
67 float deltaPhiIn;
68 float deltaEtaIn;
69 bool ecalDrivenSeed;
70 bool trackerDrivenSeed;
71 };
72
73 struct MuTrkVars {
74 float IPd0;
75 float IPdz;
76 unsigned int nHits;
77 };
78
79 struct MuIsoVars {
80 float sumPt;
81 float emEt;
82 float hadEt;
83 float nTracks;
84 float nJets;
85 };
86
87 struct MuIDVars{
88 unsigned short type;
89 std::vector<unsigned short> ids;
90 float caloCompat;
91 float segCompat;
92 unsigned int nChambers;
93 unsigned int nMatchesLoose;
94 unsigned int nMatchesMedium;
95 unsigned int nMatchesTight;
96 };
97
98 struct TauLeadTrkVars{
99 double pT;
100 double eta;
101 double phi;
102 double matchDist;
103 double IPxy;
104 double IPz;
105 float signedSipt;
106 };
107
108 struct CaloTauIsoVars{
109 unsigned int nIsoTracks;
110 unsigned int nSigTracks;
111 float leadTrackHCAL3x3hitsEtSum;
112 float leadTrackHCAL3x3hottesthitDEta;
113 float signalTracksInvariantMass;
114 float tracksInvariantMass;
115 float isolationTracksPtSum;
116 float isolationECALhitsEtSum;
117 float maximumHCALhitEt;
118 };
119
120 struct CaloTauIDVars{
121 float byIsolation;
122 float byLeadingTrackFinding;
123 float byLeadingTrackPtCut;
124 };
125
126 struct PFTauIsoVars{
127 unsigned int nSigCands;
128 unsigned int nIsoCands;
129 double maximumHCALPFClusterEt;
130 //double emFraction;
131 double hcalTotOverPLead;
132 double hcalMaxOverPLead;
133 double hcal3x3OverPLead;
134 double ecalStripSumEOverPLead;
135 double bremsRecoveryEOverPLead;
136 };
137
138 //for hadr, neutr and gamma cands
139 struct PFTauCandVars{
140 unsigned int nSigCands;
141 unsigned int nIsoCands;
142 double isolationPtSum;
143 };
144
145 struct PFTauIDVars{
146 float byLeadingTrackFinding;
147 float byLeadingTrackPtCut;
148 float byTrackIsolation;
149 float byECALIsolation;
150 float byIsolation;
151 float againstElectron;
152 float againstMuon;
153 float byIsolationUsingLeadingPion;
154 float byTaNC;
155 float byTaNCfrHalfPercent;
156 float byTaNCfrOnePercent;
157 float byTaNCfrQuarterPercent;
158 float byTaNCfrTenthPercent;
159 float ecalIsolationUsingLeadingPion;
160 float leadingPionPtCut;
161 float trackIsolationUsingLeadingPion;
162 };
163
164 struct PFTauEleIDVars{
165 double pT;
166 double eta;
167 double phi;
168 float output;
169 float decision;
170 };
171
172 struct PFTauMuIDVars{
173 float caloCompat;
174 float segCompat;
175 float decision;
176 };
177
178 struct JetVars{
179 //1=had, 2=e, 3=mu for heavy quarks;
180 //2=uds, 3=g for light quarks
181 unsigned int flavour;
182 int partonFlavour;
183 unsigned int nAssociatedTracks;
184 double rawpT;
185 float etaMean;
186 float phiMean;
187 float etaEtaMoment;
188 float phiPhiMoment;
189 float etaPhiMoment;
190 //double rawEta;
191 //double rawPhi;
192 };
193
194 struct CaloJetVars{
195 double maxEInEmTowers;
196 double maxEInHadTowers;
197 double energyFractionHadronic;
198 double emEnergyFraction;
199 double hadEnergyInHB;
200 double hadEnergyInHO;
201 double hadEnergyInHE;
202 double hadEnergyInHF;
203 double emEnergyInEB;
204 double emEnergyInEE;
205 double emEnergyInHF;
206 double towersArea;
207 double n90;
208 double n60;
209 };
210
211 struct PFJetVars{
212 double chargedHadronEnergy;
213 double chargedHadronEnergyFraction;
214 double neutralHadronEnergy;
215 double neutralHadronEnergyFraction;
216 double chargedEmEnergy;
217 double chargedEmEnergyFraction;
218 double chargedMuEnergy;
219 double chargedMuEnergyFraction;
220 double neutralEmEnergy;
221 double neutralEmEnergyFraction;
222 double chargedMultiplicity;
223 double neutralMultiplicity;
224 double muonMultiplicity;
225 };
226
227 struct JetBtagVars{
228 double cSV;
229 double cSVMVA;
230 double iPMVA;
231 double bProba;
232 double probability;
233 double sSVHE;
234 double sSVHP;
235 double softElectronByPt;
236 double softElectronByIP3d;
237 double softMuon;
238 double softMuonByPt;
239 double softMuonByIP3d;
240 double tCHE;
241 double tCHP;
242 };
243
244
245 struct JetIDVars{
246 double fHPD;
247 double fRBX;
248 double n90Hits;
249 //double fSubDetector1;
250 //double fSubDetector2;
251 //double fSubDetector3;
252 //double fSubDetector4;
253 //double restrictedEMF;
254 //int nHCALTowers;
255 //int nECALTowers;
256 //double approximatefHPD;
257 //double approximatefRBX;
258 //int hitsInN90;
259 // muon hits id
260 //int numberOfHits2RPC;
261 //int numberOfHits3RPC;
262 //int numberOfHitsRPC;
263 };
264
265
266 struct MetVars{
267 double mET;
268 double mEx;
269 double mEy;
270 double sumET;
271 double phi;
272 double mEtSig;
273 };
274
275 struct TriggerVars{
276 std::string name;
277 unsigned int index;
278 bool accept;
279 };
280
281
282 struct VertexVars{
283 std::vector<float> trackWeights;
284 double chi2;
285 double ndof;
286 double x;
287 double y;
288 double z;
289 double xError;
290 double yError;
291 double zError;
292 double cov01;
293 double cov02;
294 double cov12;
295 };
296
297 double DeltaPhi(const double phi1, const double phi2);
298
299 double DeltaR(const BaseVars & v1, const BaseVars & v2);
300 double DeltaR(const BaseVars & v1, const GenVars & v2);
301
302 double SameSign(const BaseVars & v1, const BaseVars & v2);
303
304 double OppSign(const BaseVars & v1, const BaseVars & v2);
305
306 TLorentzVector FourMomentum(const BaseVars & v, const double scale=1) ;
307
308 double TransverseMass(const BaseVars & leg1,
309 const BaseVars & leg2,
310 const double mEx,
311 const double mEy);
312
313 double TransverseMass(const BaseVars & leg1,
314 const double mEx,
315 const double mEy);
316
317 TLorentzVector FourMomentumCDFmethod(const BaseVars & leg1,
318 const BaseVars & leg2,
319 double mEx,
320 double mEy);
321
322 TLorentzVector FourMomentumCollinearApprox(const BaseVars & leg1,
323 const BaseVars & leg2,
324 double mEx,
325 double mEy);
326
327 }//namespace
328
329 #endif