00001 /***************************************************************** 00002 * $Id: StMuPmdHit.cxx,v 1.1 2004/10/19 01:40:21 mvl Exp $ 00003 * 00004 * Class : StMuPmdHit 00005 * Author: Supriya Das 00006 * **************************************************************** 00007 * 00008 * Description: This is the Hit class for PMD in MuDst 00009 * **************************************************************** 00010 * $Log: StMuPmdHit.cxx,v $ 00011 * Revision 1.1 2004/10/19 01:40:21 mvl 00012 * New class to hold Pmd hits (raw adc information) 00013 * 00014 * 00015 * ****************************************************************/ 00016 00017 #include "StMuPmdHit.h" 00018 00019 ClassImp(StMuPmdHit) 00020 00021 StMuPmdHit::StMuPmdHit() 00022 { 00023 } 00024 00025 StMuPmdHit::~StMuPmdHit() 00026 { 00027 } 00028 00029 StMuPmdHit::StMuPmdHit(StMuPmdHit* hit) 00030 { 00031 mEnergy =hit ->energy(); 00032 mADC = hit->adc(); 00033 mSuperModule = hit->superModule(); 00034 mSubDetector = hit->subDetector(); 00035 mRow = hit->row(); 00036 mCol = hit->column(); 00037 }
1.5.9