Fork me on GitHub

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

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

new PDG table

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