Changeset 268 in svn for trunk/Utilities/ExRootAnalysis/interface
- Timestamp:
- Feb 13, 2009, 10:18:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h
r267 r268 2 2 #define BLOCKCLASSES_H 3 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 * 15 * $Date: 2009-02-13 19:38:03 $ 16 * $Revision: 1.13 $ 17 * 18 * 19 * \author P. Demin - UCL, Louvain-la-Neuve 20 * 21 */ 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 ***********************************************************************/ 22 34 23 35 #include "TLorentzVector.h" … … 162 174 static TCompare *fgCompare; //! 163 175 const TCompare *GetCompare() const { return fgCompare; } 164 //void SetEem_Ehad(const float sE_em, const float sE_had) {} ; // sets E_em and E_had, computes E and ET165 176 float PT; // particle transverse momentum in GeV 166 //const float getEtaGen() const {return _EtaGen;}167 //const float getPhiGen() const {return _PhiGen;}168 169 170 //protected:171 //float EGen, _EtaGen, _PhiGen; // from the generator: energy, eta, phi172 177 173 178 ClassDef(TRootParticle, 1) … … 249 254 //--------------------------------------------------------------------------- 250 255 251 class D_Track : public TSortableObject { 252 //class D_Track : public TRootParticle { 256 class TRootTracks : public TSortableObject { 253 257 public: 254 D_Track(); // needed for storage in ExRootAnalysis255 D_Track(const D_Track& track);256 D_Track(const float inEta, const float inPhi, const float outEta, const float outPhi, const float pt);257 D_Track& operator=(const D_Track& track);258 TRootTracks(); // needed for storage in ExRootAnalysis 259 TRootTracks(const TRootTracks& track); 260 TRootTracks(const float inEta, const float inPhi, const float outEta, const float outPhi, const float pt); 261 TRootTracks& operator=(const TRootTracks& track); 258 262 void Set(const float inEta, const float inPhi, const float outEta, const float outPhi, const float pt); 259 263 const TLorentzVector GetFourVector() const; … … 262 266 const float getEtaOuter() const {return EtaOuter;} 263 267 const float getPhiOuter() const {return PhiOuter;} 264 const float getE() const {return E;} 265 const float getPx() const {return Px;} 266 const float getPy() const {return Py;} 267 const float getPz() const {return Pz;} 268 const float getPT() const {return PT;} 269 270 static TCompare *fgCompare; //! 271 const TCompare *GetCompare() const { return fgCompare; } 272 protected: 268 269 static TCompare *fgCompare; //! 270 const TCompare *GetCompare() const { return fgCompare; } 271 273 272 float Eta, Phi; // (eta,phi) at the beginning of the track 274 273 float EtaOuter, PhiOuter; // (eta,phi) at the end of the track 275 274 float PT, E, Px, Py, Pz; // transverse momentum 276 ClassDef(D_Track, 1) 277 }; 278 279 280 class TRootTracks: public TRootParticle { 281 public: 282 TRootTracks() {} // : Etaout(0), Phiout(0) {}; 283 static TCompare *fgCompare; //! 284 TRootTracks(const D_Track& track); 285 float E; // particle energy in GeV 286 float Px; // particle momentum vector (x component) in GeV 287 float Py; // particle momentum vector (y component) in GeV 288 float Pz; // particle momentum vector (z component) in GeV 289 290 float Eta; // particle pseudorapidity 291 float Phi; // particle azimuthal angle in rad 292 293 float EtaCalo; // particle pseudorapidity when entering the calo, 294 float PhiCalo; // particle azimuthal angle in rad when entering the calo 295 // float X, Y, Z; // coordinates of the beginning of the track 296 // float Xout, Yout, Zout; // coordinates of the end of the track 297 //float Etaout, Phiout; // coordinates of the end of the track 298 // void SetPosition(const float x, const float y, const float z) {X=x; Y=y; Z=z;} 299 // void SetPositionOut(const float x, const float y, const float z) {Xout=x; Yout=y; Zout=z;} 300 ClassDef(TRootTracks, 1) 301 }; 302 303 //--------------------------------------------------------------------------- 304 305 /*class TRootCalo: public TRootParticle 306 public: 307 TRootCalo() {}; 308 static TCompare *fgCompare; //! 309 310 ClassDef(TRootCalo, 1) 311 }; 312 */ 275 ClassDef(TRootTracks, 1) 276 }; 277 278 //--------------------------------------------------------------------------- 313 279 314 280 class TRootCalo: public TSortableObject … … 328 294 329 295 protected: 330 //float Eta, Phi; // segmented eta, phi331 296 float E_em, E_had; // electromagnetic and hadronic components of the tower energy 332 //float E;333 297 float ET; // total energy and transverse energy 334 298 ClassDef(TRootCalo, 1)
Note:
See TracChangeset
for help on using the changeset viewer.