[3] | 1 | #ifndef BLOCKCLASSES_H
|
---|
| 2 | #define BLOCKCLASSES_H
|
---|
| 3 |
|
---|
[268] | 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 | ***********************************************************************/
|
---|
[3] | 34 |
|
---|
| 35 | #include "TLorentzVector.h"
|
---|
| 36 | #include "TObject.h"
|
---|
[220] | 37 | #include "BlockCompare.h"
|
---|
[264] | 38 | #include "interface/D_Constants.h"
|
---|
| 39 | #include "interface/CaloUtil.h"
|
---|
[3] | 40 |
|
---|
| 41 | class TSortableObject: public TObject
|
---|
| 42 | {
|
---|
| 43 | public:
|
---|
| 44 | TSortableObject() {};
|
---|
| 45 | Bool_t IsSortable() const { return GetCompare() ? GetCompare()->IsSortable(this) : kFALSE; }
|
---|
| 46 | Int_t Compare(const TObject *obj) const { return GetCompare()->Compare(this, obj); }
|
---|
| 47 |
|
---|
| 48 | virtual const TCompare *GetCompare() const = 0;
|
---|
| 49 |
|
---|
| 50 | ClassDef(TSortableObject, 1)
|
---|
| 51 | };
|
---|
| 52 |
|
---|
| 53 | //---------------------------------------------------------------------------
|
---|
| 54 | //
|
---|
| 55 | class TRootLHEFEvent: public TObject
|
---|
| 56 | {
|
---|
| 57 | public:
|
---|
| 58 | TRootLHEFEvent() {};
|
---|
| 59 |
|
---|
| 60 | Long64_t Number; // event number
|
---|
| 61 |
|
---|
| 62 | int Nparticles; // number of particles in the event | hepup.NUP
|
---|
| 63 | int ProcessID; // subprocess code for the event | hepup.IDPRUP
|
---|
| 64 |
|
---|
| 65 | Double_t Weight; // weight for the event | hepup.XWGTUP
|
---|
| 66 | Double_t ScalePDF; // scale in GeV used in the calculation of the PDFs in the event | hepup.SCALUP
|
---|
| 67 | Double_t CouplingQED; // value of the QED coupling used in the event | hepup.AQEDUP
|
---|
| 68 | Double_t CouplingQCD; // value of the QCD coupling used in the event | hepup.AQCDUP
|
---|
| 69 |
|
---|
| 70 | ClassDef(TRootLHEFEvent, 2)
|
---|
| 71 | };
|
---|
| 72 |
|
---|
| 73 | //---------------------------------------------------------------------------
|
---|
| 74 |
|
---|
[450] | 75 | //---------------------------------------------------------------------------
|
---|
| 76 | /*
|
---|
[3] | 77 | class TRootLHEFParticle: public TSortableObject
|
---|
| 78 | {
|
---|
| 79 | public:
|
---|
| 80 | TRootLHEFParticle() {};
|
---|
| 81 | int PID; // particle HEP ID number | hepup.IDUP[number]
|
---|
| 82 | int Status; // particle status code | hepup.ISTUP[number]
|
---|
| 83 | int Mother1; // index for the particle first mother | hepup.MOTHUP[number][0]
|
---|
| 84 | int Mother2; // index for the particle last mother | hepup.MOTHUP[number][1]
|
---|
| 85 | int ColorLine1; // index for the particle color-line | hepup.ICOLUP[number][0]
|
---|
| 86 | int ColorLine2; // index for the particle anti-color-line | hepup.ICOLUP[number][1]
|
---|
| 87 |
|
---|
[192] | 88 | double Px; // particle momentum vector (x component) | hepup.PUP[number][0]
|
---|
| 89 | double Py; // particle momentum vector (y component) | hepup.PUP[number][1]
|
---|
| 90 | double Pz; // particle momentum vector (z component) | hepup.PUP[number][2]
|
---|
| 91 | double E; // particle energy | hepup.PUP[number][3]
|
---|
| 92 | double M; // particle mass | hepup.PUP[number][4]
|
---|
[378] | 93 | double Charge; // particle charge
|
---|
[3] | 94 |
|
---|
[192] | 95 | double PT; // particle transverse momentum
|
---|
| 96 | double Eta; // particle pseudorapidity
|
---|
| 97 | double Phi; // particle azimuthal angle
|
---|
[3] | 98 |
|
---|
[192] | 99 | double Rapidity; // particle rapidity
|
---|
[3] | 100 |
|
---|
[192] | 101 | double LifeTime; // particle invariant lifetime
|
---|
[3] | 102 | // (c*tau, distance from production to decay in mm)
|
---|
| 103 | // | hepup.VTIMUP[number]
|
---|
[450] | 104 |
|
---|
[192] | 105 | double Spin; // cosine of the angle between the particle spin vector
|
---|
[3] | 106 | // and the decaying particle 3-momentum,
|
---|
| 107 | // specified in the lab frame. | hepup.SPINUP[number]
|
---|
| 108 |
|
---|
| 109 | static TCompare *fgCompare; //!
|
---|
| 110 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 111 | ClassDef(TRootLHEFParticle, 2)
|
---|
| 112 |
|
---|
| 113 | };
|
---|
[450] | 114 | */
|
---|
[3] | 115 | //---------------------------------------------------------------------------
|
---|
| 116 |
|
---|
| 117 | class TRootSelectorInfo: public TObject
|
---|
| 118 | {
|
---|
| 119 | public:
|
---|
| 120 | TRootSelectorInfo() {};
|
---|
| 121 | int Processed; // current number of processed events
|
---|
| 122 | int Accepted; // current number of accepted events
|
---|
| 123 |
|
---|
| 124 | ClassDef(TRootSelectorInfo, 1)
|
---|
| 125 | };
|
---|
| 126 |
|
---|
| 127 |
|
---|
| 128 | class TRootGenEvent: public TObject
|
---|
| 129 | {
|
---|
| 130 | public:
|
---|
| 131 | TRootGenEvent() {};
|
---|
| 132 | Long64_t Number; // event number | hepevt.nevhep
|
---|
| 133 |
|
---|
| 134 | static TCompare *fgCompare; //!
|
---|
| 135 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 136 |
|
---|
| 137 | ClassDef(TRootGenEvent, 1)
|
---|
| 138 | };
|
---|
| 139 |
|
---|
| 140 |
|
---|
| 141 | class TRootEvent: public TObject {
|
---|
| 142 |
|
---|
| 143 | public:
|
---|
| 144 | TRootEvent() {};
|
---|
| 145 | int Run; // run number [G3EventProxy::simSignal().id().runNumber()]
|
---|
| 146 | int Event; // event number [G3EventProxy::simSignal().id().eventInRun()]
|
---|
| 147 |
|
---|
| 148 | // Short_t L1Decision; // L1 trigger global decision [L1Trigger::decision()]
|
---|
| 149 | // Short_t HLTDecision; // HLT trigger global decision [HighLevelTriggerResult::getGlobalDecision()]
|
---|
| 150 |
|
---|
| 151 | ClassDef(TRootEvent, 1)
|
---|
| 152 | };
|
---|
| 153 |
|
---|
| 154 | //---------------------------------------------------------------------------
|
---|
| 155 |
|
---|
| 156 | class TRootParticle: public TSortableObject {
|
---|
| 157 |
|
---|
| 158 | public:
|
---|
| 159 |
|
---|
| 160 | TRootParticle() {};
|
---|
| 161 | float E; // particle energy in GeV
|
---|
| 162 | float Px; // particle momentum vector (x component) in GeV
|
---|
| 163 | float Py; // particle momentum vector (y component) in GeV
|
---|
| 164 | float Pz; // particle momentum vector (z component) in GeV
|
---|
| 165 |
|
---|
| 166 | float Eta; // particle pseudorapidity
|
---|
| 167 | float Phi; // particle azimuthal angle in rad
|
---|
| 168 |
|
---|
| 169 | void Set(const TLorentzVector& momentum);
|
---|
[176] | 170 | void Set(const float px, const float py, const float pz, const float e);
|
---|
[264] | 171 | void SetEtaPhi(const float eta, const float phi) {Eta=eta; Phi=phi;};
|
---|
| 172 | void SetEtaPhiEET(const float eta, const float phi, const float e, const float et);
|
---|
[3] | 173 | static TCompare *fgCompare; //!
|
---|
| 174 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
[264] | 175 | float PT; // particle transverse momentum in GeV
|
---|
[3] | 176 |
|
---|
| 177 | ClassDef(TRootParticle, 1)
|
---|
| 178 | };
|
---|
| 179 |
|
---|
[270] | 180 | //--------------------------------------------------------------------------
|
---|
[318] | 181 | class TRootGenParticle;
|
---|
[350] | 182 |
|
---|
| 183 | namespace TRootC {
|
---|
[270] | 184 | class GenParticle: public TRootParticle {
|
---|
| 185 |
|
---|
| 186 | public:
|
---|
| 187 | GenParticle() {};
|
---|
[318] | 188 | GenParticle(const TRootGenParticle& p);
|
---|
[270] | 189 | int PID; // particle HEP ID number [RawHepEventParticle::pid()]
|
---|
| 190 | int Status; // particle status [RawHepEventParticle::status()]
|
---|
| 191 | int M1; // particle 1st mother [RawHepEventParticle::mother1() - 1]
|
---|
| 192 | int M2; // particle 2nd mother [RawHepEventParticle::mother2() - 1]
|
---|
| 193 | int D1; // particle 1st daughter [RawHepEventParticle::daughter1() - 1]
|
---|
| 194 | int D2; // particle 2nd daughter [RawHepEventParticle::daughter2() - 1]
|
---|
| 195 |
|
---|
| 196 | float Charge;
|
---|
| 197 |
|
---|
| 198 | float T; // particle vertex position (t component) [RawHepEventParticle::t()]
|
---|
| 199 | float X; // particle vertex position (x component) [RawHepEventParticle::x()]
|
---|
| 200 | float Y; // particle vertex position (y component) [RawHepEventParticle::y()]
|
---|
| 201 | float Z; // particle vertex position (z component) [RawHepEventParticle::z()]
|
---|
| 202 | float M;
|
---|
| 203 |
|
---|
| 204 |
|
---|
| 205 | static TCompare *fgCompare; //!
|
---|
| 206 |
|
---|
| 207 | ClassDef(GenParticle, 1)
|
---|
| 208 | };
|
---|
[350] | 209 | }
|
---|
[270] | 210 |
|
---|
[3] | 211 | //---------------------------------------------------------------------------
|
---|
| 212 |
|
---|
| 213 | class TRootGenParticle: public TRootParticle {
|
---|
| 214 |
|
---|
| 215 | public:
|
---|
[378] | 216 | TRootGenParticle() {_initialised=false; M=-9999.; }
|
---|
[323] | 217 | TRootGenParticle(const int pid): PID(pid) {_initialised=false;}
|
---|
[350] | 218 | TRootGenParticle(TRootC::GenParticle* part);
|
---|
[270] | 219 |
|
---|
[3] | 220 | int PID; // particle HEP ID number [RawHepEventParticle::pid()]
|
---|
| 221 | int Status; // particle status [RawHepEventParticle::status()]
|
---|
| 222 | int M1; // particle 1st mother [RawHepEventParticle::mother1() - 1]
|
---|
| 223 | int M2; // particle 2nd mother [RawHepEventParticle::mother2() - 1]
|
---|
| 224 | int D1; // particle 1st daughter [RawHepEventParticle::daughter1() - 1]
|
---|
| 225 | int D2; // particle 2nd daughter [RawHepEventParticle::daughter2() - 1]
|
---|
| 226 |
|
---|
| 227 | float T; // particle vertex position (t component) [RawHepEventParticle::t()]
|
---|
| 228 | float X; // particle vertex position (x component) [RawHepEventParticle::x()]
|
---|
| 229 | float Y; // particle vertex position (y component) [RawHepEventParticle::y()]
|
---|
| 230 | float Z; // particle vertex position (z component) [RawHepEventParticle::z()]
|
---|
[56] | 231 | float M;
|
---|
[264] | 232 | void setFractions();
|
---|
| 233 | const float getFem() {if(!_initialised) setFractions(); return _Fem;}
|
---|
| 234 | const float getFhad() {if(!_initialised) setFractions(); return _Fhad;}
|
---|
| 235 |
|
---|
[270] | 236 | float EtaCalo; // particle pseudorapidity when entering the calo,
|
---|
| 237 | float PhiCalo; // particle azimuthal angle in rad when entering the calo
|
---|
| 238 | void SetEtaPhiCalo(const float eta, const float phi) {EtaCalo=eta; PhiCalo=phi;};
|
---|
[264] | 239 |
|
---|
[375] | 240 | void print();//
|
---|
| 241 |
|
---|
[3] | 242 | static TCompare *fgCompare; //!
|
---|
[270] | 243 |
|
---|
| 244 | float Charge; // electrical charge
|
---|
[264] | 245 | protected:
|
---|
| 246 | float _Fem, _Fhad; // fractions of energy deposit
|
---|
| 247 | bool _initialised;
|
---|
[3] | 248 | ClassDef(TRootGenParticle, 1)
|
---|
| 249 | };
|
---|
| 250 |
|
---|
[264] | 251 |
|
---|
[3] | 252 | //------------------------------------------------------------------------------
|
---|
| 253 |
|
---|
[323] | 254 | class TRootElectron: public TRootParticle {
|
---|
[3] | 255 | public:
|
---|
[323] | 256 | TRootElectron():Charge(-999), IsolFlag(false), IsolPt(UNDEFINED), EtaCalo(UNDEFINED), PhiCalo(UNDEFINED), EHoverEE(UNDEFINED){};
|
---|
| 257 | static TCompare *fgCompare; //!
|
---|
[3] | 258 | int Charge; // particle Charge [RawHepEventParticle::pid()]
|
---|
[323] | 259 | bool IsolFlag; // stores the result of the isolation test
|
---|
| 260 | float IsolPt; // sum of pt around the electron, for isolation criteria
|
---|
[270] | 261 | float EtaCalo; // particle pseudorapidity when entering the calo,
|
---|
| 262 | float PhiCalo; // particle azimuthal angle in rad when entering the calo
|
---|
[323] | 263 | float EHoverEE;
|
---|
| 264 |
|
---|
[270] | 265 | void SetEtaPhiCalo(const float eta, const float phi) {EtaCalo=eta; PhiCalo=phi;};
|
---|
| 266 |
|
---|
[3] | 267 | ClassDef(TRootElectron, 1)
|
---|
| 268 | };
|
---|
| 269 |
|
---|
| 270 | //------------------------------------------------------------------------------
|
---|
| 271 |
|
---|
[323] | 272 | class TRootPhoton: public TRootParticle {
|
---|
[3] | 273 | public:
|
---|
[323] | 274 | TRootPhoton() : EHoverEE(UNDEFINED) {};
|
---|
[3] | 275 | static TCompare *fgCompare; //!
|
---|
| 276 |
|
---|
[310] | 277 | float EHoverEE;
|
---|
[3] | 278 | ClassDef(TRootPhoton, 1)
|
---|
| 279 | };
|
---|
| 280 |
|
---|
| 281 |
|
---|
| 282 | //------------------------------------------------------------------------------
|
---|
| 283 |
|
---|
[323] | 284 | class TRootMuon: public TRootParticle {
|
---|
[3] | 285 | public:
|
---|
[323] | 286 | TRootMuon():Charge(-999), IsolFlag(false), IsolPt(UNDEFINED), EtaCalo(UNDEFINED), PhiCalo(UNDEFINED),
|
---|
| 287 | EHoverEE(UNDEFINED), EtRatio(UNDEFINED) {};
|
---|
| 288 | static TCompare *fgCompare; //!
|
---|
[3] | 289 | int Charge; // particle Charge [RawHepEventParticle::pid()]
|
---|
[29] | 290 | bool IsolFlag;
|
---|
[323] | 291 | float IsolPt;
|
---|
[270] | 292 | float EtaCalo; // particle pseudorapidity when entering the calo,
|
---|
| 293 | float PhiCalo; // particle azimuthal angle in rad when entering the calo
|
---|
[323] | 294 | float EHoverEE; // hadronic energy over electromagnetic energy
|
---|
| 295 | float EtRatio; // calo Et in NxN-tower grid around the muon over the muon Et
|
---|
| 296 |
|
---|
[270] | 297 | void SetEtaPhiCalo(const float eta, const float phi) {EtaCalo=eta; PhiCalo=phi;};
|
---|
[3] | 298 | ClassDef(TRootMuon, 1)
|
---|
| 299 | };
|
---|
| 300 |
|
---|
| 301 | //---------------------------------------------------------------------------
|
---|
| 302 |
|
---|
[290] | 303 | class TRootTracks : public TSortableObject {
|
---|
[264] | 304 | public:
|
---|
[268] | 305 | TRootTracks(); // needed for storage in ExRootAnalysis
|
---|
| 306 | TRootTracks(const TRootTracks& track);
|
---|
| 307 | TRootTracks(const float inEta, const float inPhi, const float outEta, const float outPhi, const float pt);
|
---|
| 308 | TRootTracks& operator=(const TRootTracks& track);
|
---|
[290] | 309 | void Set(const float inEta, const float inPhi, const float outEta, const float outPhi, const float pt, const float charge);
|
---|
[264] | 310 | const TLorentzVector GetFourVector() const;
|
---|
[290] | 311 | const float getEta() const {return Eta;}
|
---|
| 312 | const float getPhi() const {return Phi;}
|
---|
| 313 | const float getEtaOuter() const {return EtaOuter;}
|
---|
| 314 | const float getPhiOuter() const {return PhiOuter;}
|
---|
[264] | 315 |
|
---|
[268] | 316 | static TCompare *fgCompare; //!
|
---|
[290] | 317 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
[268] | 318 |
|
---|
[290] | 319 | float Eta, Phi; // (eta,phi) at the beginning of the track
|
---|
[264] | 320 | float EtaOuter, PhiOuter; // (eta,phi) at the end of the track
|
---|
[290] | 321 | float PT, E, Px, Py, Pz; // transverse momentum
|
---|
| 322 | float Charge;
|
---|
[268] | 323 | ClassDef(TRootTracks, 1)
|
---|
[264] | 324 | };
|
---|
| 325 |
|
---|
[3] | 326 | //---------------------------------------------------------------------------
|
---|
| 327 |
|
---|
[267] | 328 | class TRootCalo: public TSortableObject
|
---|
| 329 | {
|
---|
| 330 | //class TRootCalo: public TRootParticle {
|
---|
[264] | 331 | public:
|
---|
[267] | 332 | float Eta;
|
---|
| 333 | float Phi;
|
---|
| 334 | float E;
|
---|
[264] | 335 | TRootCalo() ;
|
---|
| 336 | TRootCalo(const TRootCalo& cal);
|
---|
| 337 | TRootCalo& operator=(const TRootCalo& cal);
|
---|
| 338 | void set(const D_CaloTower& cal);
|
---|
| 339 | static TCompare *fgCompare; //!
|
---|
[267] | 340 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
[264] | 341 | const float getET() const {return ET;}
|
---|
| 342 |
|
---|
| 343 | protected:
|
---|
| 344 | float E_em, E_had; // electromagnetic and hadronic components of the tower energy
|
---|
| 345 | float ET; // total energy and transverse energy
|
---|
| 346 | ClassDef(TRootCalo, 1)
|
---|
| 347 | };
|
---|
| 348 |
|
---|
[3] | 349 | //---------------------------------------------------------------------------
|
---|
[408] | 350 | /*
|
---|
[378] | 351 | class TRootZdcHits: public TRootParticle
|
---|
[3] | 352 | {
|
---|
| 353 | public:
|
---|
[378] | 354 | TRootZdcHits() {};
|
---|
| 355 | float T; // time of flight [s]
|
---|
| 356 | int side; // -1 or +1
|
---|
| 357 | static TCompare *fgCompare; //!
|
---|
[387] | 358 | int pid;
|
---|
[370] | 359 |
|
---|
[378] | 360 | ClassDef(TRootZdcHits, 1)
|
---|
| 361 | };
|
---|
[408] | 362 | */
|
---|
[378] | 363 |
|
---|
[408] | 364 | // gen-level info stored for forward detectors
|
---|
| 365 | // this class is similar to TRootParticle, but for the member names
|
---|
| 366 | class TRootGenFwdParticle: public TSortableObject {
|
---|
[378] | 367 |
|
---|
[408] | 368 | public:
|
---|
| 369 |
|
---|
| 370 | TRootGenFwdParticle() {};
|
---|
| 371 | TRootGenFwdParticle(const TRootGenFwdParticle& p);
|
---|
| 372 | TRootGenFwdParticle& operator=(const TRootGenFwdParticle& p);
|
---|
| 373 | float genE; // particle energy in GeV
|
---|
| 374 | float genPx; // particle momentum vector (x component) in GeV
|
---|
| 375 | float genPy; // particle momentum vector (y component) in GeV
|
---|
| 376 | float genPz; // particle momentum vector (z component) in GeV
|
---|
| 377 | float genPT; // particle transverse momentum in GeV
|
---|
| 378 |
|
---|
| 379 | float genEta; // particle pseudorapidity
|
---|
| 380 | float genPhi; // particle azimuthal angle in rad
|
---|
| 381 | int pid;
|
---|
| 382 |
|
---|
| 383 | void Set(const TLorentzVector& momentum); // initialises the gen-level data
|
---|
| 384 | void Set(const float px, const float py, const float pz, const float e);
|
---|
| 385 | void SetEtaPhi(const float eta, const float phi) {genEta=eta; genPhi=phi;};
|
---|
| 386 | void SetEtaPhiEET(const float eta, const float phi, const float e, const float et);
|
---|
| 387 | static TCompare *fgCompare; //!
|
---|
| 388 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 389 |
|
---|
| 390 | ClassDef(TRootGenFwdParticle, 1)
|
---|
| 391 | };
|
---|
| 392 |
|
---|
| 393 |
|
---|
| 394 |
|
---|
| 395 | //class TRootZdcHits: public TSortableObject
|
---|
| 396 | class TRootZdcHits: public TRootGenFwdParticle
|
---|
[378] | 397 | {
|
---|
| 398 | public:
|
---|
| 399 |
|
---|
[370] | 400 | TRootZdcHits() {}; // do not put anything for the default constructor-- ExRootAnalysis constrain!!!
|
---|
| 401 | TRootZdcHits(const float e, const float t, const int side, const bool had);
|
---|
| 402 | TRootZdcHits(const TRootZdcHits& zdc);
|
---|
| 403 | TRootZdcHits& operator=(const TRootZdcHits& zdc);
|
---|
| 404 | float E;
|
---|
[3] | 405 | float T; // time of flight [s]
|
---|
| 406 | int side; // -1 or +1
|
---|
| 407 | static TCompare *fgCompare; //!
|
---|
[370] | 408 | bool hadronic_hit; // true if neutron, false if photon
|
---|
[3] | 409 |
|
---|
[370] | 410 | ClassDef(TRootZdcHits, 2)
|
---|
[3] | 411 | };
|
---|
| 412 |
|
---|
[408] | 413 |
|
---|
[3] | 414 | //---------------------------------------------------------------------------
|
---|
| 415 |
|
---|
[277] | 416 | class TRootTauJet: public TRootParticle
|
---|
[3] | 417 | {
|
---|
| 418 | public:
|
---|
[267] | 419 | TRootTauJet() {};
|
---|
[290] | 420 | float Charge; // normally, using the charge of the track ; here using gen-level tau charge
|
---|
[307] | 421 | int NTracks;
|
---|
[3] | 422 |
|
---|
[310] | 423 | float EHoverEE;
|
---|
[277] | 424 | // float E; // particle energy in GeV
|
---|
| 425 | // float Px; // particle momentum vector (x component) in GeV
|
---|
| 426 | // float Py; // particle momentum vector (y component) in GeV
|
---|
| 427 | // float Pz; // particle momentum vector (z component) in GeV
|
---|
[267] | 428 |
|
---|
[277] | 429 | // float Eta; // particle pseudorapidity
|
---|
| 430 | // float Phi; // particle azimuthal angle in rad
|
---|
[267] | 431 |
|
---|
| 432 | void Set(const TLorentzVector& momentum);// { return TRootParticle::Set(momentum); }
|
---|
| 433 |
|
---|
[3] | 434 | static TCompare *fgCompare; //!
|
---|
| 435 |
|
---|
[277] | 436 | // float PT; // particle transverse momentum in GeV
|
---|
[267] | 437 |
|
---|
| 438 | ClassDef(TRootTauJet, 1)
|
---|
[3] | 439 | };
|
---|
| 440 |
|
---|
| 441 | //---------------------------------------------------------------------------
|
---|
| 442 |
|
---|
[277] | 443 | class TRootJet: public TRootParticle
|
---|
[3] | 444 | {
|
---|
| 445 | public:
|
---|
[267] | 446 | TRootJet() {};
|
---|
| 447 |
|
---|
[3] | 448 | static TCompare *fgCompare; //!
|
---|
| 449 |
|
---|
[267] | 450 | bool Btag;
|
---|
[307] | 451 | int NTracks;
|
---|
[310] | 452 |
|
---|
| 453 | float EHoverEE;
|
---|
[267] | 454 | ClassDef(TRootJet, 1)
|
---|
[3] | 455 | };
|
---|
| 456 |
|
---|
[267] | 457 | //------------------------------------------------------------------------------
|
---|
| 458 |
|
---|
[67] | 459 | class TRootTrigger: public TSortableObject
|
---|
| 460 | {
|
---|
| 461 | public:
|
---|
| 462 | TRootTrigger() {};
|
---|
| 463 |
|
---|
[72] | 464 | int Accepted;
|
---|
[67] | 465 |
|
---|
[70] | 466 | static TCompare *fgCompare; //!
|
---|
| 467 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 468 |
|
---|
[67] | 469 | ClassDef(TRootTrigger, 1)
|
---|
| 470 | };
|
---|
| 471 | //---------------------------------------------------------------------------
|
---|
| 472 |
|
---|
[3] | 473 | class TRootETmis: public TSortableObject
|
---|
| 474 | {
|
---|
| 475 | public:
|
---|
| 476 | TRootETmis() {};
|
---|
| 477 | float ET; // jet energy [RecJet::getEnergy()]
|
---|
| 478 | float Phi; // jet azimuthal angle [RecJet::getPhi()]
|
---|
| 479 | float Px;
|
---|
| 480 | float Py;
|
---|
| 481 |
|
---|
| 482 | static TCompare *fgCompare; //!
|
---|
| 483 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 484 |
|
---|
| 485 | ClassDef(TRootETmis, 1)
|
---|
| 486 | };
|
---|
| 487 |
|
---|
| 488 | //---------------------------------------------------------------------------
|
---|
| 489 |
|
---|
[408] | 490 | //class TRootRomanPotHits: public TSortableObject
|
---|
| 491 | class TRootRomanPotHits: public TRootGenFwdParticle
|
---|
[3] | 492 | {
|
---|
| 493 | public:
|
---|
| 494 | TRootRomanPotHits() {};
|
---|
[370] | 495 | // float T; // time of flight to the detector [s]
|
---|
[3] | 496 | float S; // distance to the IP [m]
|
---|
| 497 | float E; // reconstructed energy [GeV]
|
---|
| 498 | float q2; // reconstructed squared momentum transfer [GeV^2]
|
---|
| 499 |
|
---|
| 500 | float X; // horizontal distance to the beam [um]
|
---|
| 501 | float Y; // vertical distance to the beam [um]
|
---|
| 502 |
|
---|
| 503 | float Tx; // angle of the momentum in the horizontal (x,z) plane [urad]
|
---|
| 504 | float Ty; // angle of the momentum in the verical (y,z) plane [urad]
|
---|
| 505 |
|
---|
[378] | 506 | float T; // time of flight to the detector [s]
|
---|
[3] | 507 | int side; // -1 or 1
|
---|
| 508 |
|
---|
| 509 | static TCompare *fgCompare; //!
|
---|
[408] | 510 | //const TCompare *GetCompare() const { return fgCompare; }
|
---|
[3] | 511 |
|
---|
[408] | 512 | ClassDef(TRootRomanPotHits, 2)
|
---|
[3] | 513 | };
|
---|
| 514 |
|
---|
[370] | 515 | //---------------------------------------------------------------------------
|
---|
| 516 |
|
---|
| 517 | class TRootForwardTaggerHits : public TRootRomanPotHits
|
---|
| 518 | {
|
---|
| 519 | public:
|
---|
| 520 | TRootForwardTaggerHits() {};
|
---|
| 521 | float T; // time of flight to the detector [s]
|
---|
| 522 |
|
---|
| 523 | static TCompare *fgCompare; //!
|
---|
| 524 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 525 |
|
---|
| 526 | ClassDef(TRootForwardTaggerHits, 1)
|
---|
| 527 | };
|
---|
| 528 |
|
---|
| 529 |
|
---|
[450] | 530 |
|
---|
| 531 |
|
---|
| 532 | class TRootLHEFParticle: public TRootC::GenParticle
|
---|
| 533 | {
|
---|
| 534 | public:
|
---|
| 535 | TRootLHEFParticle() {};
|
---|
| 536 | int ColorLine1; // index for the particle color-line | hepup.ICOLUP[number][0]
|
---|
| 537 | int ColorLine2; // index for the particle anti-color-line | hepup.ICOLUP[number][1]
|
---|
| 538 |
|
---|
| 539 | double Rapidity; // particle rapidity
|
---|
| 540 | double LifeTime; // particle invariant lifetime
|
---|
| 541 | // (c*tau, distance from production to decay in mm)
|
---|
| 542 | // | hepup.VTIMUP[number]
|
---|
| 543 |
|
---|
| 544 | double Spin; // cosine of the angle between the particle spin vector
|
---|
| 545 | // and the decaying particle 3-momentum,
|
---|
| 546 | // specified in the lab frame. | hepup.SPINUP[number]
|
---|
| 547 |
|
---|
| 548 | static TCompare *fgCompare; //!
|
---|
| 549 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 550 | ClassDef(TRootLHEFParticle, 2)
|
---|
| 551 |
|
---|
| 552 | };
|
---|
| 553 |
|
---|
[3] | 554 | #endif // BLOCKCLASSES_H
|
---|
| 555 |
|
---|