StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPeCCtbSlat.cxx
1 //
3 // Revision 1.0 2001/2/15 Pablo Yepes: yepes@rice.edu
4 //
6 #include <Stiostream.h>
7 #include "StPeCCtbSlat.h"
8 
9 ClassImp(StPeCCtbSlat)
10 
12  i_phi = 0 ;
13  i_eta = 0 ;
14  adc = 0 ;
15 }
16 
17 StPeCCtbSlat::StPeCCtbSlat( Byte_t _i_phi, Byte_t _i_eta, Int_t _adc ) {
18  i_phi = _i_phi ;
19  i_eta = _i_eta ;
20  adc = _adc ;
21 }
22 
23 StPeCCtbSlat::~StPeCCtbSlat() {
24 }
25 
26 
27