[3] | 1 | #ifndef BLOCKCLASSES_H
|
---|
| 2 | #define BLOCKCLASSES_H
|
---|
| 3 |
|
---|
| 4 | /** \class BlockClasses
|
---|
| 5 | *
|
---|
| 6 | * Definition of classes to be stored in root tree.
|
---|
| 7 | * You can decide to have the objects in each event to be sorted according
|
---|
| 8 | * to one of the data member of the class. If you decide so then a class
|
---|
| 9 | * inheriting from class TCompare should be implemented.
|
---|
| 10 | * There are already several functions TCompare*** implemented
|
---|
| 11 | * (see BlockCompare.h).
|
---|
| 12 | * Function TCompareXX sorts objects by the variable "XX" that MUST be
|
---|
| 13 | * present in the data members of the Block TRoot class.
|
---|
| 14 | *
|
---|
[220] | 15 | * $Date: 2009-02-02 11:32:12 $
|
---|
| 16 | * $Revision: 1.11 $
|
---|
[3] | 17 | *
|
---|
| 18 | *
|
---|
| 19 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 20 | *
|
---|
| 21 | */
|
---|
| 22 |
|
---|
| 23 | #include "TLorentzVector.h"
|
---|
| 24 | #include "TObject.h"
|
---|
[220] | 25 | #include "BlockCompare.h"
|
---|
[3] | 26 |
|
---|
| 27 | class TSortableObject: public TObject
|
---|
| 28 | {
|
---|
| 29 | public:
|
---|
| 30 | TSortableObject() {};
|
---|
| 31 | Bool_t IsSortable() const { return GetCompare() ? GetCompare()->IsSortable(this) : kFALSE; }
|
---|
| 32 | Int_t Compare(const TObject *obj) const { return GetCompare()->Compare(this, obj); }
|
---|
| 33 |
|
---|
| 34 | virtual const TCompare *GetCompare() const = 0;
|
---|
| 35 |
|
---|
| 36 | ClassDef(TSortableObject, 1)
|
---|
| 37 | };
|
---|
| 38 |
|
---|
| 39 | //---------------------------------------------------------------------------
|
---|
| 40 | //
|
---|
| 41 | class TRootLHEFEvent: public TObject
|
---|
| 42 | {
|
---|
| 43 | public:
|
---|
| 44 | TRootLHEFEvent() {};
|
---|
| 45 |
|
---|
| 46 | Long64_t Number; // event number
|
---|
| 47 |
|
---|
| 48 | int Nparticles; // number of particles in the event | hepup.NUP
|
---|
| 49 | int ProcessID; // subprocess code for the event | hepup.IDPRUP
|
---|
| 50 |
|
---|
| 51 | Double_t Weight; // weight for the event | hepup.XWGTUP
|
---|
| 52 | Double_t ScalePDF; // scale in GeV used in the calculation of the PDFs in the event | hepup.SCALUP
|
---|
| 53 | Double_t CouplingQED; // value of the QED coupling used in the event | hepup.AQEDUP
|
---|
| 54 | Double_t CouplingQCD; // value of the QCD coupling used in the event | hepup.AQCDUP
|
---|
| 55 |
|
---|
| 56 | ClassDef(TRootLHEFEvent, 2)
|
---|
| 57 | };
|
---|
| 58 |
|
---|
| 59 | //---------------------------------------------------------------------------
|
---|
| 60 |
|
---|
| 61 | class TRootLHEFParticle: public TSortableObject
|
---|
| 62 | {
|
---|
| 63 | public:
|
---|
| 64 | TRootLHEFParticle() {};
|
---|
| 65 | int PID; // particle HEP ID number | hepup.IDUP[number]
|
---|
| 66 | int Status; // particle status code | hepup.ISTUP[number]
|
---|
| 67 | int Mother1; // index for the particle first mother | hepup.MOTHUP[number][0]
|
---|
| 68 | int Mother2; // index for the particle last mother | hepup.MOTHUP[number][1]
|
---|
| 69 | int ColorLine1; // index for the particle color-line | hepup.ICOLUP[number][0]
|
---|
| 70 | int ColorLine2; // index for the particle anti-color-line | hepup.ICOLUP[number][1]
|
---|
| 71 |
|
---|
[192] | 72 | double Px; // particle momentum vector (x component) | hepup.PUP[number][0]
|
---|
| 73 | double Py; // particle momentum vector (y component) | hepup.PUP[number][1]
|
---|
| 74 | double Pz; // particle momentum vector (z component) | hepup.PUP[number][2]
|
---|
| 75 | double E; // particle energy | hepup.PUP[number][3]
|
---|
| 76 | double M; // particle mass | hepup.PUP[number][4]
|
---|
[3] | 77 |
|
---|
[192] | 78 | double PT; // particle transverse momentum
|
---|
| 79 | double Eta; // particle pseudorapidity
|
---|
| 80 | double Phi; // particle azimuthal angle
|
---|
[3] | 81 |
|
---|
[192] | 82 | double Rapidity; // particle rapidity
|
---|
[3] | 83 |
|
---|
[192] | 84 | double LifeTime; // particle invariant lifetime
|
---|
[3] | 85 | // (c*tau, distance from production to decay in mm)
|
---|
| 86 | // | hepup.VTIMUP[number]
|
---|
| 87 |
|
---|
[192] | 88 | double Spin; // cosine of the angle between the particle spin vector
|
---|
[3] | 89 | // and the decaying particle 3-momentum,
|
---|
| 90 | // specified in the lab frame. | hepup.SPINUP[number]
|
---|
| 91 |
|
---|
| 92 | static TCompare *fgCompare; //!
|
---|
| 93 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 94 | ClassDef(TRootLHEFParticle, 2)
|
---|
| 95 |
|
---|
| 96 | };
|
---|
| 97 |
|
---|
| 98 | //---------------------------------------------------------------------------
|
---|
| 99 |
|
---|
| 100 | class TRootSelectorInfo: public TObject
|
---|
| 101 | {
|
---|
| 102 | public:
|
---|
| 103 | TRootSelectorInfo() {};
|
---|
| 104 | int Processed; // current number of processed events
|
---|
| 105 | int Accepted; // current number of accepted events
|
---|
| 106 |
|
---|
| 107 | ClassDef(TRootSelectorInfo, 1)
|
---|
| 108 | };
|
---|
| 109 |
|
---|
| 110 |
|
---|
| 111 | class TRootGenEvent: public TObject
|
---|
| 112 | {
|
---|
| 113 | public:
|
---|
| 114 | TRootGenEvent() {};
|
---|
| 115 | Long64_t Number; // event number | hepevt.nevhep
|
---|
| 116 |
|
---|
| 117 | static TCompare *fgCompare; //!
|
---|
| 118 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 119 |
|
---|
| 120 | ClassDef(TRootGenEvent, 1)
|
---|
| 121 | };
|
---|
| 122 |
|
---|
| 123 |
|
---|
| 124 | class TRootEvent: public TObject {
|
---|
| 125 |
|
---|
| 126 | public:
|
---|
| 127 | TRootEvent() {};
|
---|
| 128 | int Run; // run number [G3EventProxy::simSignal().id().runNumber()]
|
---|
| 129 | int Event; // event number [G3EventProxy::simSignal().id().eventInRun()]
|
---|
| 130 |
|
---|
| 131 | // Short_t L1Decision; // L1 trigger global decision [L1Trigger::decision()]
|
---|
| 132 | // Short_t HLTDecision; // HLT trigger global decision [HighLevelTriggerResult::getGlobalDecision()]
|
---|
| 133 |
|
---|
| 134 | ClassDef(TRootEvent, 1)
|
---|
| 135 | };
|
---|
| 136 |
|
---|
| 137 | //---------------------------------------------------------------------------
|
---|
| 138 |
|
---|
| 139 | class TRootParticle: public TSortableObject {
|
---|
| 140 |
|
---|
| 141 | public:
|
---|
| 142 |
|
---|
| 143 | TRootParticle() {};
|
---|
| 144 | float E; // particle energy in GeV
|
---|
| 145 | float Px; // particle momentum vector (x component) in GeV
|
---|
| 146 | float Py; // particle momentum vector (y component) in GeV
|
---|
| 147 | float Pz; // particle momentum vector (z component) in GeV
|
---|
| 148 |
|
---|
| 149 | float PT; // particle transverse momentum in GeV
|
---|
| 150 | float Eta; // particle pseudorapidity
|
---|
| 151 | float Phi; // particle azimuthal angle in rad
|
---|
| 152 |
|
---|
| 153 | void Set(const TLorentzVector& momentum);
|
---|
[176] | 154 | void Set(const float px, const float py, const float pz, const float e);
|
---|
[3] | 155 | static TCompare *fgCompare; //!
|
---|
| 156 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 157 |
|
---|
| 158 | ClassDef(TRootParticle, 1)
|
---|
| 159 | };
|
---|
| 160 |
|
---|
| 161 |
|
---|
| 162 | //---------------------------------------------------------------------------
|
---|
| 163 |
|
---|
| 164 | class TRootGenParticle: public TRootParticle {
|
---|
| 165 |
|
---|
| 166 | public:
|
---|
| 167 | TRootGenParticle() {};
|
---|
| 168 | int PID; // particle HEP ID number [RawHepEventParticle::pid()]
|
---|
| 169 | int Status; // particle status [RawHepEventParticle::status()]
|
---|
| 170 | int M1; // particle 1st mother [RawHepEventParticle::mother1() - 1]
|
---|
| 171 | int M2; // particle 2nd mother [RawHepEventParticle::mother2() - 1]
|
---|
| 172 | int D1; // particle 1st daughter [RawHepEventParticle::daughter1() - 1]
|
---|
| 173 | int D2; // particle 2nd daughter [RawHepEventParticle::daughter2() - 1]
|
---|
| 174 | float Charge; // electrical charge
|
---|
| 175 |
|
---|
| 176 | float T; // particle vertex position (t component) [RawHepEventParticle::t()]
|
---|
| 177 | float X; // particle vertex position (x component) [RawHepEventParticle::x()]
|
---|
| 178 | float Y; // particle vertex position (y component) [RawHepEventParticle::y()]
|
---|
| 179 | float Z; // particle vertex position (z component) [RawHepEventParticle::z()]
|
---|
[56] | 180 | float M;
|
---|
[3] | 181 | static TCompare *fgCompare; //!
|
---|
| 182 |
|
---|
| 183 | ClassDef(TRootGenParticle, 1)
|
---|
| 184 | };
|
---|
| 185 |
|
---|
| 186 | //------------------------------------------------------------------------------
|
---|
| 187 |
|
---|
| 188 | class TRootElectron: public TRootParticle
|
---|
| 189 | {
|
---|
| 190 | public:
|
---|
| 191 | TRootElectron() {};
|
---|
| 192 | int Charge; // particle Charge [RawHepEventParticle::pid()]
|
---|
| 193 | static TCompare *fgCompare; //!
|
---|
| 194 |
|
---|
[29] | 195 | bool IsolFlag;
|
---|
| 196 |
|
---|
[3] | 197 | ClassDef(TRootElectron, 1)
|
---|
| 198 | };
|
---|
| 199 |
|
---|
| 200 | //------------------------------------------------------------------------------
|
---|
| 201 |
|
---|
| 202 | class TRootPhoton: public TRootParticle
|
---|
| 203 | {
|
---|
| 204 | public:
|
---|
| 205 | TRootPhoton() {};
|
---|
| 206 | static TCompare *fgCompare; //!
|
---|
| 207 |
|
---|
| 208 | ClassDef(TRootPhoton, 1)
|
---|
| 209 | };
|
---|
| 210 |
|
---|
| 211 |
|
---|
| 212 | //------------------------------------------------------------------------------
|
---|
| 213 |
|
---|
| 214 | class TRootMuon: public TRootParticle
|
---|
| 215 | {
|
---|
| 216 | public:
|
---|
| 217 | TRootMuon() {};
|
---|
| 218 | int Charge; // particle Charge [RawHepEventParticle::pid()]
|
---|
[29] | 219 | bool IsolFlag;
|
---|
[3] | 220 | static TCompare *fgCompare; //!
|
---|
| 221 |
|
---|
| 222 | ClassDef(TRootMuon, 1)
|
---|
| 223 | };
|
---|
| 224 |
|
---|
| 225 | //---------------------------------------------------------------------------
|
---|
| 226 |
|
---|
| 227 | class TRootTracks: public TRootParticle
|
---|
| 228 | {
|
---|
| 229 | public:
|
---|
[185] | 230 | TRootTracks() : Etaout(0), Phiout(0) {};
|
---|
[3] | 231 | static TCompare *fgCompare; //!
|
---|
[176] | 232 |
|
---|
[185] | 233 | // float X, Y, Z; // coordinates of the beginning of the track
|
---|
| 234 | // float Xout, Yout, Zout; // coordinates of the end of the track
|
---|
| 235 | float Etaout, Phiout; // coordinates of the end of the track
|
---|
| 236 | // void SetPosition(const float x, const float y, const float z) {X=x; Y=y; Z=z;}
|
---|
| 237 | // void SetPositionOut(const float x, const float y, const float z) {Xout=x; Yout=y; Zout=z;}
|
---|
[3] | 238 | ClassDef(TRootTracks, 1)
|
---|
| 239 | };
|
---|
| 240 |
|
---|
| 241 | //---------------------------------------------------------------------------
|
---|
| 242 |
|
---|
| 243 | class TRootCalo: public TRootParticle
|
---|
| 244 | {
|
---|
| 245 | public:
|
---|
| 246 | TRootCalo() {};
|
---|
| 247 | static TCompare *fgCompare; //!
|
---|
| 248 |
|
---|
| 249 | ClassDef(TRootCalo, 1)
|
---|
| 250 | };
|
---|
| 251 |
|
---|
| 252 | //---------------------------------------------------------------------------
|
---|
| 253 | class TRootZdcHits: public TRootParticle
|
---|
| 254 | {
|
---|
| 255 | public:
|
---|
| 256 | TRootZdcHits() {};
|
---|
| 257 | float T; // time of flight [s]
|
---|
| 258 | int side; // -1 or +1
|
---|
| 259 | static TCompare *fgCompare; //!
|
---|
| 260 |
|
---|
| 261 | ClassDef(TRootZdcHits, 1)
|
---|
| 262 | };
|
---|
| 263 |
|
---|
| 264 | //---------------------------------------------------------------------------
|
---|
| 265 |
|
---|
| 266 | class TRootJet: public TRootParticle
|
---|
| 267 | {
|
---|
| 268 | public:
|
---|
| 269 | TRootJet() {};
|
---|
| 270 | bool Btag;
|
---|
| 271 |
|
---|
| 272 | static TCompare *fgCompare; //!
|
---|
| 273 |
|
---|
| 274 | ClassDef(TRootJet, 1)
|
---|
| 275 | };
|
---|
| 276 |
|
---|
| 277 | //---------------------------------------------------------------------------
|
---|
| 278 |
|
---|
| 279 | class TRootTauJet: public TRootParticle
|
---|
| 280 | {
|
---|
| 281 | public:
|
---|
| 282 | TRootTauJet() {};
|
---|
| 283 | static TCompare *fgCompare; //!
|
---|
| 284 |
|
---|
| 285 | ClassDef(TRootTauJet, 1)
|
---|
| 286 | };
|
---|
| 287 |
|
---|
[67] | 288 | class TRootTrigger: public TSortableObject
|
---|
| 289 | {
|
---|
| 290 | public:
|
---|
| 291 | TRootTrigger() {};
|
---|
| 292 |
|
---|
[72] | 293 | int Accepted;
|
---|
[67] | 294 |
|
---|
[70] | 295 | static TCompare *fgCompare; //!
|
---|
| 296 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 297 |
|
---|
[67] | 298 | ClassDef(TRootTrigger, 1)
|
---|
| 299 | };
|
---|
| 300 | //---------------------------------------------------------------------------
|
---|
| 301 |
|
---|
[3] | 302 | class TRootETmis: public TSortableObject
|
---|
| 303 | {
|
---|
| 304 | public:
|
---|
| 305 | TRootETmis() {};
|
---|
| 306 | float ET; // jet energy [RecJet::getEnergy()]
|
---|
| 307 | float Phi; // jet azimuthal angle [RecJet::getPhi()]
|
---|
| 308 | float Px;
|
---|
| 309 | float Py;
|
---|
| 310 |
|
---|
| 311 | static TCompare *fgCompare; //!
|
---|
| 312 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 313 |
|
---|
| 314 | ClassDef(TRootETmis, 1)
|
---|
| 315 | };
|
---|
| 316 |
|
---|
| 317 | //---------------------------------------------------------------------------
|
---|
| 318 |
|
---|
| 319 | class TRootRomanPotHits: public TSortableObject
|
---|
| 320 | {
|
---|
| 321 | public:
|
---|
| 322 | TRootRomanPotHits() {};
|
---|
| 323 | float T; // time of flight to the detector [s]
|
---|
| 324 | float S; // distance to the IP [m]
|
---|
| 325 | float E; // reconstructed energy [GeV]
|
---|
| 326 | float q2; // reconstructed squared momentum transfer [GeV^2]
|
---|
| 327 |
|
---|
| 328 | float X; // horizontal distance to the beam [um]
|
---|
| 329 | float Y; // vertical distance to the beam [um]
|
---|
| 330 |
|
---|
| 331 | float Tx; // angle of the momentum in the horizontal (x,z) plane [urad]
|
---|
| 332 | float Ty; // angle of the momentum in the verical (y,z) plane [urad]
|
---|
| 333 |
|
---|
| 334 | int side; // -1 or 1
|
---|
| 335 |
|
---|
| 336 | static TCompare *fgCompare; //!
|
---|
| 337 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
| 338 |
|
---|
| 339 | ClassDef(TRootRomanPotHits, 1)
|
---|
| 340 | };
|
---|
| 341 |
|
---|
| 342 | //---------------------------------------------------------------------------
|
---|
| 343 |
|
---|
| 344 | #endif // BLOCKCLASSES_H
|
---|
| 345 |
|
---|