Changeset 370 in svn for trunk/Utilities/ExRootAnalysis/interface
- Timestamp:
- May 10, 2009, 8:16:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h ¶
r350 r370 343 343 344 344 //--------------------------------------------------------------------------- 345 class TRootZdcHits: public TRootParticle 346 { 347 public: 348 TRootZdcHits() {}; 345 class TRootZdcHits: public TSortableObject 346 { 347 public: 348 349 TRootZdcHits() {}; // do not put anything for the default constructor-- ExRootAnalysis constrain!!! 350 TRootZdcHits(const float e, const float t, const int side, const bool had); 351 TRootZdcHits(const TRootZdcHits& zdc); 352 TRootZdcHits& operator=(const TRootZdcHits& zdc); 353 const TCompare *GetCompare() const { return fgCompare; } 354 float E; 349 355 float T; // time of flight [s] 350 356 int side; // -1 or +1 351 357 static TCompare *fgCompare; //! 352 353 ClassDef(TRootZdcHits, 1) 358 bool hadronic_hit; // true if neutron, false if photon 359 360 ClassDef(TRootZdcHits, 2) 354 361 }; 355 362 … … 434 441 public: 435 442 TRootRomanPotHits() {}; 436 float T; // time of flight to the detector [s]443 // float T; // time of flight to the detector [s] 437 444 float S; // distance to the IP [m] 438 445 float E; // reconstructed energy [GeV] … … 453 460 }; 454 461 462 //--------------------------------------------------------------------------- 463 464 class TRootForwardTaggerHits : public TRootRomanPotHits 465 { 466 public: 467 TRootForwardTaggerHits() {}; 468 float T; // time of flight to the detector [s] 469 470 static TCompare *fgCompare; //! 471 const TCompare *GetCompare() const { return fgCompare; } 472 473 ClassDef(TRootForwardTaggerHits, 1) 474 }; 475 476 455 477 #endif // BLOCKCLASSES_H 456 478
Note:
See TracChangeset
for help on using the changeset viewer.