Fork me on GitHub

Changeset 1361 in svn for trunk/classes/DelphesClasses.h


Ignore:
Timestamp:
Apr 8, 2014, 6:43:52 PM (10 years ago)
Author:
Pavel Demin
Message:

add HectorHit class and corresponding ROOT tree branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/DelphesClasses.h

    r1354 r1361  
    390390//---------------------------------------------------------------------------
    391391
     392class HectorHit: public SortableObject
     393{
     394public:
     395  Float_t E; // reconstructed energy [GeV]
     396
     397  Float_t Tx; // angle of the momentum in the horizontal (x,z) plane [urad]
     398  Float_t Ty; // angle of the momentum in the verical (y,z) plane [urad]
     399
     400  Float_t T; // time of flight to the detector [s]
     401
     402  Float_t X; // horizontal distance to the beam [um]
     403  Float_t Y; // vertical distance to the beam [um]
     404  Float_t S; // distance to the interaction point [m]
     405
     406  static CompBase *fgCompare; //!
     407  const CompBase *GetCompare() const { return fgCompare; }
     408
     409  ClassDef(HectorHit, 1)
     410};
     411
     412//---------------------------------------------------------------------------
     413
    392414class Candidate: public SortableObject
    393415{
Note: See TracChangeset for help on using the changeset viewer.