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