00001 //########################################################### 00002 // EMC Micro Event 00003 // Author: Alexandre A. P. Suaide 00004 // initial version 08/2001 00005 // 00006 // See README for details 00007 //########################################################### 00008 #include "StMuEmcHit.h" 00009 00010 ClassImp(StMuEmcHit); 00011 00012 StMuEmcHit::StMuEmcHit() 00013 : TObject() 00014 { 00015 } 00016 StMuEmcHit::~StMuEmcHit() 00017 { 00018 } 00019 StMuEmcHit::StMuEmcHit(const StMuEmcHit &hit) 00020 : TObject(hit) 00021 { 00022 mId=(short)hit.getId(); 00023 mAdc=(short)hit.getAdc(); 00024 mCalType=(char)hit.getCalType(); 00025 mEnergy=hit.getEnergy(); 00026 } 00027 00028
1.5.9