Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:16

0001 // $Id: $                                                                                             
0002 
0003 /*!
0004  * \file PhotonPair.h
0005  * \brief 
0006  * \author Jin Huang <jhuang@bnl.gov>
0007  * \version $Revision:   $
0008  * \date $Date: $
0009  */
0010 
0011 #ifndef PhotonPair_H_
0012 #define PhotonPair_H_
0013 
0014 #include <phool/PHObject.h>
0015 #include <phool/phool.h>
0016 
0017 /*!
0018  * \brief PhotonPair
0019  */
0020 class PhotonPair : public PHObject
0021 {
0022 public:
0023   PhotonPair();
0024   virtual
0025   ~PhotonPair();
0026 
0027   virtual void
0028   Clear(Option_t *option = "");
0029 
0030   virtual void
0031   Reset();
0032 
0033   float gmass;
0034   float mass;
0035   bool  good_upsilon;
0036 
0037 ClassDef(PhotonPair,9)
0038 };
0039 
0040 #endif /* PhotonPair_H_ */