Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:12:42

0001 // $Id: $                                                                                             
0002 
0003 /*!
0004  * \file UpsilonPair.h
0005  * \brief 
0006  * \author Jin Huang <jhuang@bnl.gov>
0007  * \version $Revision:   $
0008  * \date $Date: $
0009  */
0010 
0011 #ifndef UPSILONRECO_H_
0012 #define UPSILONRECO_H_
0013 
0014 #include <phool/PHObject.h>
0015 #include <phool/phool.h>
0016 
0017 class TClonesArray;
0018 class EMCalTrk;
0019 
0020 /*!
0021  * \brief UpsilonPair
0022  */
0023 class UpsilonPair : public PHObject
0024 {
0025 public:
0026   UpsilonPair();
0027   virtual
0028   ~UpsilonPair();
0029   virtual void
0030   Reset();
0031 
0032   EMCalTrk *
0033   get_trk( int i);
0034 
0035 public:
0036 
0037   float gmass;
0038   float mass;
0039   bool  good_upsilon;
0040 
0041   enum {N_trk = 2};
0042 
0043 //  EMCalTrk trk[N_trk];
0044   TClonesArray * trk;
0045 
0046   ClassDef(UpsilonPair,1)
0047 };
0048 
0049 #endif /* UPSILONRECO_H_ */