Fork me on GitHub

source: svn/trunk/interface/SmearUtil.h@ 374

Last change on this file since 374 was 374, checked in by Xavier Rouby, 15 years ago

added Resolution terms for energy and timing for ZDC

File size: 11.4 KB
Line 
1#ifndef _SMEARUTIL_H_
2#define _SMEARUTIL_H_
3
4/***********************************************************************
5** **
6** /----------------------------------------------\ **
7** | Delphes, a framework for the fast simulation | **
8** | of a generic collider experiment | **
9** \----------------------------------------------/ **
10** **
11** **
12** This package uses: **
13** ------------------ **
14** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
15** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
16** FROG: [hep-ex/0901.2718v1] **
17** **
18** ------------------------------------------------------------------ **
19** **
20** Main authors: **
21** ------------- **
22** **
23** Severine Ovyn Xavier Rouby **
24** severine.ovyn@uclouvain.be xavier.rouby@cern **
25** **
26** Center for Particle Physics and Phenomenology (CP3) **
27** Universite catholique de Louvain (UCL) **
28** Louvain-la-Neuve, Belgium **
29** **
30** Copyright (C) 2008-2009, **
31** All rights reserved. **
32** **
33***********************************************************************/
34
35/// \file SmearUtil.h
36/// \brief RESOLution class, and some generic definitions
37
38
39#include <vector>
40#include "TLorentzVector.h"
41
42#include "D_Constants.h"
43#include "CaloUtil.h"
44#include "BlockClasses.h"
45#include "TSimpleArray.h"
46#include "PhysicsTower.hh"
47
48using namespace std;
49
50class D_Particle {
51
52 public:
53 D_Particle(const TLorentzVector & p, const int pid, const float etacalo, const float phicalo) :
54 _fourmomentum(p), _pid(pid), _etaCalo(etacalo), _phiCalo(phicalo) {}
55 //D_Particle(const float e, const float eta, const float phi, const float pt, const int pid) :
56 // _pid(pid), _etaCalo(UNDEFINED), _phiCalo(UNDEFINED) { TLorentzVector p; p.SetPtEtaPhiE(pt,eta,phi,e); _fourmomentum = p; }
57 D_Particle(const float px, const float py, const float pz, const float e, const int pid) :
58 _fourmomentum(px,py,pz,e), _pid(pid), _etaCalo(UNDEFINED), _phiCalo(UNDEFINED) {}
59
60 const float E() const {return _fourmomentum.E();} // particle energy [GeV]
61 const float Px() const {return _fourmomentum.Px();} // horizontal coordinate of momentum [GeV]
62 const float Py() const {return _fourmomentum.Py();} // vertical coordinate of momentum [GeV]
63 const float Pz() const {return _fourmomentum.Pz();} // longitudinal coordinate of momentum [GeV]
64 const float Pt() const {return _fourmomentum.Pt();} // transverse momentum [GeV]
65 const float EtaCalo() const {return _etaCalo;} // pseudorapidity
66 const float Eta() const {return _fourmomentum.Eta();} // pseudorapidity
67 const float PhiCalo() const {return _phiCalo;} // azimuthal angle
68 const float Phi() const {return _fourmomentum.Phi();} // azimuthal angle
69 const int PID() const {return _pid;} // particle energy in [GeV]
70 const TLorentzVector& getFourMomentum() const {return _fourmomentum;}
71
72 private:
73 TLorentzVector _fourmomentum;
74 int _pid;
75 float _etaCalo, _phiCalo;
76};
77
78class RESOLution
79{
80 public:
81 /// Constructor
82 RESOLution();
83 RESOLution(const RESOLution & DET);
84 RESOLution& operator=(const RESOLution& DET);
85 ~RESOLution() { delete [] TOWER_eta_edges; delete [] TOWER_dphi;};
86
87 // Detector coverage
88 float CEN_max_tracker; // tracker pseudorapidity coverage
89 float CEN_max_calo_cen; // central calorimeter pseudorapidity coverage
90 float CEN_max_calo_fwd; // forward calorimeter pseudorapidity coverage
91 float CEN_max_mu; // muon chambers pseudorapidity coverage
92
93 float VFD_min_calo_vfd; // very forward calorimeter pseudorapidity coverage
94 float VFD_max_calo_vfd; // very forward calorimeter pseudorapidity coverage
95 float VFD_min_zdc; // coverage for Zero Degree Calorimeter, for photons and neutrons
96 float VFD_s_zdc; // distance of the Zero Degree Calorimeter, from the Interaction poin, in [m]
97
98 float RP_220_s; // distance of the RP to the IP, in meters
99 float RP_220_x; // distance of the RP to the beam, in meters
100 float RP_420_s; // distance of the RP to the IP, in meters
101 float RP_420_x; // distance of the RP to the beam, in meters
102 string RP_beam1Card; //
103 string RP_beam2Card; //
104 string RP_IP_name; //
105 float RP_offsetEl_s;
106 float RP_offsetEl_x;
107 float RP_cross_x;
108 float RP_cross_y;
109 float RP_cross_ang;
110
111
112 //energy resolution for electron/photon
113 // \sigma/E = C + N/E + S/\sqrt{E}
114 float ELG_Scen; // S term for central ECAL
115 float ELG_Ncen; // N term for central ECAL
116 float ELG_Ccen; // C term for central ECAL
117 float ELG_Sfwd; // S term for forward ECAL
118 float ELG_Cfwd; // C term for forward ECAL
119 float ELG_Nfwd; // N term for forward ECAL
120 float ELG_Szdc; // S term for zdc-em sections
121 float ELG_Czdc; // C term for zdc-em sections
122 float ELG_Nzdc; // N term for zdc-em sections
123
124 //energy resolution for hadrons in ecal/hcal/hf
125 // \sigma/E = C + N/E + S/\sqrt{E}
126 float HAD_Shcal; // S term for central HCAL // hadronic calorimeter
127 float HAD_Nhcal; // N term for central HCAL
128 float HAD_Chcal; // C term for central HCAL
129 float HAD_Shf; // S term for central HF // forward calorimeter
130 float HAD_Nhf; // N term for central HF
131 float HAD_Chf; // C term for central HF
132 float HAD_Szdc; // S term for zdc-had sections
133 float HAD_Czdc; // C term for zdc-had sections
134 float HAD_Nzdc; // N term for zdc-had sections
135
136 // muon smearing
137 float MU_SmearPt;
138
139 // time resolution
140 float ZDC_T_resolution;
141 float RP220_T_resolution;
142 float RP420_T_resolution;
143
144 //Magnetic Field information
145 int TRACK_radius; //radius of the BField coverage
146 int TRACK_length; //length of the BField coverage
147 float TRACK_bfield_x;
148 float TRACK_bfield_y;
149 float TRACK_bfield_z;
150 float TRACK_ptmin; // minimal pt needed to reach the calorimeter, in GeV
151 int TRACK_eff; // in percent, should be an integer
152
153
154 //Define Calorimetric towers
155 unsigned int TOWER_number;
156 float * TOWER_eta_edges;
157 float * TOWER_dphi;
158
159 //thresholds for reconstructed objetcs
160 float PTCUT_elec;
161 float PTCUT_muon;
162 float PTCUT_jet;
163 float PTCUT_gamma;
164 float PTCUT_taujet;
165
166 float ZDC_gamma_E; // minimal energy of photons for reconstruction in ZDC
167 float ZDC_n_E; // minimal energy of neutrons for reconstruction in ZDC
168
169 float ISOL_PT; //minimal pt of tracks for isolation criteria
170 float ISOL_Cone; //Cone for isolation criteria
171 float ISOL_Calo_ET; //minimal tower energy for isolation criteria
172 unsigned int ISOL_Calo_Grid; //Grid size (N x N) for calorimetric isolation
173
174
175 //General jet variable
176 double JET_coneradius;
177 int JET_jetalgo;
178 double JET_seed;
179 double JET_overlap;
180
181 // MidPoint algorithm definition
182 double JET_M_coneareafraction;
183 int JET_M_maxpairsize;
184 int JET_M_maxiterations;
185 // Define Cone algorithm.
186 int JET_C_adjacencycut;
187 int JET_C_maxiterations;
188 int JET_C_iratch;
189 //Define SISCone algorithm.
190 int JET_S_npass;
191 double JET_S_protojet_ptmin;
192
193 //For Tau-jet definition
194 // R = sqrt (phi^2 + eta^2)
195 float TAU_energy_scone; // radius R of the cone for tau definition, based on energy threshold
196 float TAU_track_scone; // radius R of the cone for tau definition, based on track number
197 float TAU_track_pt; // minimal pt [GeV] for tracks to be considered in tau definition
198 float TAU_energy_frac; // fraction of energy required in the central part of the cone, for tau jets
199
200 //tagging definition
201 int BTAG_b;
202 int BTAG_mistag_c;
203 int BTAG_mistag_l;
204
205
206 //trigger flag
207 int FLAG_trigger; //flag for trigger
208 int FLAG_frog; //flag for frog display
209 int FLAG_bfield; //flag for bfield propagation
210 int FLAG_vfd; //flag for very forward detector
211 int FLAG_RP; //flag for very forward detector
212 int FLAG_lhco; //flag for very forward detector
213
214 int NEvents_Frog;
215 float PT_QUARKS_MIN; // minimal pt needed for quarks to reach the tracker, in GeV
216
217 // to sort a vector
218 //void SortedVector(vector<ParticleUtil> &vect);
219 void SortedVector(vector<D_Particle> &vect);
220
221 /// Reads the data card for the initialisation of the parameters
222 void ReadDataCard(const string datacard);
223
224 /// Create the output log file
225 void Logfile(const string& LogName);
226
227 /// Provides the smeared TLorentzVector for the electrons
228 void SmearElectron(TLorentzVector &electron);
229
230 /// Provides the smeared TLorentzVector for the muons
231 void SmearMu(TLorentzVector &muon);
232
233 /// Provides the smeared TLorentzVector for the hadrons
234 void SmearHadron(TLorentzVector &hadron, const float frac);
235
236 /// For electromagnetic collimation in tau jets
237 double EnergySmallCone(const vector<PhysicsTower> &towers, const float eta, const float phi);
238
239 /// Number of tracks in tau jet algo
240 //unsigned int NumTracks(float& charge, const vector<TLorentzVector> &tracks, const float pt_track, const float eta, const float phi);
241 unsigned int NumTracks(float& charge, const vector<TRootTracks> &tracks, const float pt_track, const float eta, const float phi);
242
243 /// b-jets
244 int Bjets(const TSimpleArray<TRootC::GenParticle> &subarray, const float& eta, const float& phi);
245
246 /// b-tag efficiency and misidentification
247 bool Btaggedjet(const TLorentzVector &JET, const TSimpleArray<TRootC::GenParticle> &subarray);
248
249 /// Lepton isolation based on tracking
250 bool Isolation(const D_Particle& part, const vector<TRootTracks> &tracks, const float& pt_second_track, const float& isolCone, float& ptiso);
251
252 /// Lepton isolation based on calorimetry (optional. Default: off)
253 float CaloIsolation(const D_Particle& part, const D_CaloTowerList & towers);
254
255 //********************* returns a segmented value for eta and phi, for calo towers *****
256 void BinEtaPhi(const float phi, const float eta, float& iPhi, float& iEta);
257
258};
259
260// ** returns the sign (+1 or -1) or an integer
261int sign(const int myint);
262int sign(const float myfloat);
263
264// **************************** Return the Delta Phi****************************
265float DeltaPhi(const float phi1, const float phi2);
266
267// **************************** Returns the Delta R****************************
268float DeltaR(const float phi1, const float eta1, const float phi2, const float eta2);
269
270//************* Returns an array of the quarks sitting within the tracker acceptance ***************
271int ChargeVal(const int pid);
272
273#endif
Note: See TracBrowser for help on using the repository browser.