00001 #include "StGammaStrip.h"
00002 #include <iostream>
00003
00004 ClassImp(StGammaStrip);
00005
00006 StGammaStrip::StGammaStrip()
00007 {
00008
00009 index = 0;
00010 sector = 0;
00011 plane = 0;
00012 energy = 0;
00013 adc = 0;
00014 stat = 0;
00015 fail = 0;
00016 position = 0;
00017 left = 0;
00018 right = 0;
00019
00020 }
00021
00022 void StGammaStrip::print()
00023 {
00024
00025 std::cout << "sec = " << (int)sector << " plane = " << (int)plane
00026 << " index = " << (int)index << " energy = "
00027 << energy << std::endl;
00028
00029 }