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.C
0005  * \brief 
0006  * \author Jin Huang <jhuang@bnl.gov>
0007  * \version $Revision:   $
0008  * \date $Date: $
0009  */
0010 
0011 #include "PhotonPair.h"
0012 #include <cmath>
0013 
0014 using namespace std;
0015 
0016 ClassImp(PhotonPair)
0017 
0018 PhotonPair::PhotonPair()
0019 {
0020   Reset();
0021 }
0022 
0023 PhotonPair::~PhotonPair()
0024 {
0025   // TODO Auto-generated destructor stub
0026 }
0027 
0028 void
0029 PhotonPair::Reset()
0030 {
0031 
0032   gmass = NAN;
0033   mass = NAN;
0034   good_upsilon = false;
0035 
0036 }
0037 
0038 void
0039 PhotonPair::Clear(Option_t *option)
0040 {
0041   PHObject::Clear(option);
0042 
0043   Reset();
0044 }