00001 00003 // // 00004 // TMBTree class for fps data chunk 00005 // // 00007 00008 #include "tmb_tree/TMBFpsData.hpp" 00009 00010 00011 ClassImp(TMBFpsData); 00012 00013 00014 TMBFpsData::TMBFpsData(): 00015 _wedge(-1), _strip(0), 00016 _energy(0) 00017 {} 00018 00019 00020 TMBFpsData::TMBFpsData(Int_t wedge, Int_t strip, Float_t energy) 00021 :_wedge(wedge), 00022 _strip(strip), 00023 _energy(energy) 00024 {} 00025
1.3.4