StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGammaStrip.cxx
1 #include "StGammaStrip.h"
2 #include <iostream>
3 
4 ClassImp(StGammaStrip);
5 
6 StGammaStrip::StGammaStrip()
7 {
8 
9  index = 0;
10  sector = 0;
11  plane = 0;
12  energy = 0;
13  adc = 0;
14  stat = 0;
15  fail = 0;
16  position = 0;
17  left = 0;
18  right = 0;
19 
20 }
21 
22 void StGammaStrip::print()
23 {
24 
25  std::cout << "sec = " << (int)sector << " plane = " << (int)plane
26  << " index = " << (int)index << " energy = "
27  << energy << std::endl;
28 
29 }