File indexing completed on 2025-08-05 08:12:16
0001
0002
0003
0004
0005
0006
0007
0008
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
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 }