#include <UberRecordLite.h>
Inheritance diagram for UberRecordLite:

Public Member Functions | |
| UberRecordLite () | |
| UberRecordLite (const UberRecHeader &header) | |
| virtual | ~UberRecordLite () |
| void | ResetEvent () |
| int | AddNextHit (UShort_t p, UShort_t s) |
| void | AddNextHitValues (StripEnd::StripEnd_t se, Int_t adc, Float_t npe, Float_t sigcorr, Float_t mip, Float_t time, Int_t agg) |
| void | AddNextCosmicHit (UShort_t p, UShort_t s) |
| void | AddNextCosmicHitValues (StripEnd::StripEnd_t se, Int_t adc, Float_t time, Int_t agg) |
| const TClonesArray * | GetHitList () const |
| virtual std::ostream & | Print (std::ostream &os) const |
| virtual void | Print (Option_t *option="") const |
| virtual void | Clear (Option_t *option="") |
Public Attributes | |
| UInt_t | snarlno |
| Int_t | triggerword |
| Double_t | triggertime |
| UInt_t | nhits |
| UShort_t | nhitplanes |
| UShort_t | nhitstrips |
| UShort_t | ndeadplanes |
| UShort_t | mindeadplaneno |
| Float_t | sigcorrconv |
| Float_t | totmip |
| Int_t | maxadc |
| Float_t | maxnpe |
| Float_t | maxmip |
| Float_t | maxtime |
| Float_t | p0totmip |
| Float_t | p1totmip |
| UShort_t | p0stripmaxmip |
| Float_t | p0maxmiptstamp |
| UShort_t | p1stripmaxmip |
| Float_t | p1maxmiptstamp |
| Float_t | mipweighaveplane |
| Float_t | mipweighcentereven |
| Float_t | mipweighcenterodd |
| Float_t | mipweighrad |
| UShort_t | showermax |
| Float_t | mipshowermax |
| Int_t | ceradc [CalDetConstants::KOVCONST] |
| Float_t | certime [CalDetConstants::KOVCONST] |
| Int_t | toftdc [CalDetConstants::TOFCONST] |
| Int_t | tofadc [CalDetConstants::TOFCONST] |
| Float_t | tofhittime [CalDetConstants::TOFCONST] |
| Float_t | toftime |
| UInt_t | torbits |
| UInt_t | torok |
| NtpCalDetPID | cpid |
| TClonesArray * | shw |
| TClonesArray * | trk |
| //-> array of showers | |
| TClonesArray * | evt |
| //-> array of tracks | |
Protected Member Functions | |
| virtual void | Init () |
| //-> array of events | |
Private Attributes | |
| UInt_t | fhitindex |
| TClonesArray * | hitlist |
| a variable to keep track of the position of current hit | |
| UInt_t | fcoshitindex |
| TClonesArray * | coshitlist |
| a variable to keep track of the position of current hit | |
Definition at line 18 of file UberRecordLite.h.
| UberRecordLite::UberRecordLite | ( | ) |
Definition at line 18 of file UberRecordLite.cxx.
References EVD::Init(), Msg::kDebug, CalDetConstants::KOVCONST, MSG, and CalDetConstants::TOFCONST.
00018 : 00019 RecRecordImp<UberRecHeader>(), 00020 snarlno(0), 00021 triggerword(0), 00022 triggertime(0.), 00023 nhits(0), 00024 nhitplanes(0), 00025 nhitstrips(0), 00026 ndeadplanes(0), 00027 mindeadplaneno(CalDetConstants::PLANECONST), 00028 sigcorrconv(0.), 00029 totmip(0.), 00030 maxadc(0), 00031 maxnpe(0.), 00032 maxmip(0.), 00033 maxtime(0.), 00034 p0totmip(0.), 00035 p1totmip(0.), 00036 p0stripmaxmip(CalDetConstants::STRIPCONST), 00037 p0maxmiptstamp(0.), 00038 p1stripmaxmip(CalDetConstants::STRIPCONST), 00039 p1maxmiptstamp(0.), 00040 mipweighaveplane(0.), 00041 mipweighcentereven(0.), 00042 mipweighcenterodd(0.), 00043 mipweighrad(0.), 00044 showermax(0), 00045 mipshowermax(0.), 00046 toftime(0.), torbits(0), torok(kFALSE), 00047 cpid(), 00048 shw(0), 00049 trk(0), 00050 evt(0), 00051 fhitindex(0), 00052 hitlist(0), 00053 fcoshitindex(0), 00054 coshitlist(0) 00055 { 00056 00057 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite creator"<<endl; 00058 for(int i=0;i<CalDetConstants::KOVCONST;i++){ 00059 ceradc[i]=0; 00060 certime[i]=0.; 00061 } 00062 for(int i=0;i<CalDetConstants::TOFCONST;i++){ 00063 toftdc[i]=0; 00064 tofadc[i]=0; 00065 tofhittime[i]=0.; 00066 } 00067 00068 this->Init(); 00069 }//end UberRecordLite()
| UberRecordLite::UberRecordLite | ( | const UberRecHeader & | header | ) |
Definition at line 72 of file UberRecordLite.cxx.
References ceradc, certime, Init(), Msg::kDebug, CalDetConstants::KOVCONST, MSG, tofadc, CalDetConstants::TOFCONST, tofhittime, and toftdc.
00072 : 00073 RecRecordImp<UberRecHeader>(header), 00074 snarlno(0), 00075 triggerword(0), 00076 triggertime(0.), 00077 nhits(0), 00078 nhitplanes(0), 00079 nhitstrips(0), 00080 ndeadplanes(0), 00081 mindeadplaneno(CalDetConstants::PLANECONST), 00082 sigcorrconv(0.), 00083 totmip(0.), 00084 maxadc(0), 00085 maxnpe(0.), 00086 maxmip(0.), 00087 maxtime(0.), 00088 p0totmip(0.), 00089 p1totmip(0.), 00090 p0stripmaxmip(CalDetConstants::STRIPCONST), 00091 p0maxmiptstamp(0.), 00092 p1stripmaxmip(CalDetConstants::STRIPCONST), 00093 p1maxmiptstamp(0.), 00094 mipweighaveplane(0.), 00095 mipweighcentereven(0.), 00096 mipweighcenterodd(0.), 00097 mipweighrad(0.), 00098 showermax(0), 00099 mipshowermax(0.), 00100 toftime(0.), torbits(0), torok(kFALSE), 00101 cpid(), 00102 shw(0), 00103 trk(0), 00104 evt(0), 00105 fhitindex(0), 00106 hitlist(0), 00107 fcoshitindex(0), 00108 coshitlist(0) 00109 00110 { 00111 00112 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite creator with header arg"<<endl; 00113 for(int i=0;i<CalDetConstants::KOVCONST;i++){ 00114 ceradc[i]=0; 00115 certime[i]=0.; 00116 } 00117 for(int i=0;i<CalDetConstants::TOFCONST;i++){ 00118 toftdc[i]=0; 00119 tofadc[i]=0; 00120 tofhittime[i]=0.; 00121 } 00122 this->Init(); 00123 00124 }//end UberRecordLite(const UberRecHeader& header) //________________________________________________________________________________
| UberRecordLite::~UberRecordLite | ( | ) | [virtual] |
Definition at line 127 of file UberRecordLite.cxx.
References coshitlist, evt, hitlist, RecArrayAllocator::Instance(), Msg::kDebug, MSG, RecArrayAllocator::ReleaseArray(), shw, and trk.
00128 { 00129 00130 MSG("UberRecordLite",Msg::kDebug)<<"In ~UberRecordLite"<<endl; 00131 RecArrayAllocator& allocator = RecArrayAllocator::Instance(); 00132 MSG("UberRecordLite",Msg::kDebug)<<"got instance"<<endl; 00133 // Allocated memory is retrieved via object Clear call 00134 if ( hitlist ) { allocator.ReleaseArray( hitlist ); hitlist = 0; } 00135 MSG("UberRecordLite",Msg::kDebug)<<"In released hitlist"<<endl; 00136 if ( coshitlist ) { allocator.ReleaseArray( coshitlist ); coshitlist = 0; } 00137 MSG("UberRecordLite",Msg::kDebug)<<"In released coshitlist"<<endl; 00138 if ( shw ) { allocator.ReleaseArray( shw ); shw = 0; } 00139 MSG("UberRecordLite",Msg::kDebug)<<"In released shw"<<endl; 00140 if ( trk ) { allocator.ReleaseArray( trk ); trk = 0; } 00141 MSG("UberRecordLite",Msg::kDebug)<<"In released trk"<<endl; 00142 if ( evt ) { allocator.ReleaseArray( evt ); evt = 0; } 00143 MSG("UberRecordLite",Msg::kDebug)<<"In released evt"<<endl; 00144 00145 00146 }//end ~UberRecordLite()
| void UberRecordLite::AddNextCosmicHit | ( | UShort_t | p, | |
| UShort_t | s | |||
| ) |
Definition at line 274 of file UberRecordLite.cxx.
References fcoshitindex, Msg::kDebug, MSG, and UberCosmicHit::SetPlaneStrip().
Referenced by UberModuleLite::Reco().
00275 { 00276 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite AddNextHit"<<endl; 00277 new((*coshitlist)[fcoshitindex]) UberCosmicHit(); 00278 UberCosmicHit *uch = static_cast<UberCosmicHit *>((*coshitlist)[fcoshitindex]); 00279 uch->SetPlaneStrip(p,s); 00280 fcoshitindex++; 00281 return; 00282 00283 }//end AddNextCosmicHit()
| void UberRecordLite::AddNextCosmicHitValues | ( | StripEnd::StripEnd_t | se, | |
| Int_t | adc, | |||
| Float_t | time, | |||
| Int_t | agg | |||
| ) |
Definition at line 286 of file UberRecordLite.cxx.
References UberCosmicHit::AddValues(), fcoshitindex, Msg::kDebug, and MSG.
Referenced by UberModuleLite::Reco().
00288 { 00289 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite AddnextCosmicHitValues"<<endl; 00290 UberCosmicHit *uch = static_cast<UberCosmicHit *>((*coshitlist)[fcoshitindex-1]); 00291 uch->AddValues(se, adc, time, agg); 00292 return; 00293 }//end AddNextCosmicHitValues()
| int UberRecordLite::AddNextHit | ( | UShort_t | p, | |
| UShort_t | s | |||
| ) |
Definition at line 245 of file UberRecordLite.cxx.
References fhitindex, hitlist, Msg::kDebug, MSG, and UberHit::SetPlaneStrip().
Referenced by UberModuleLite::Reco().
00246 { 00247 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite AddNextHit"<<endl; 00248 MSG("UberRecordLite",Msg::kDebug)<<"value of hitlist "<<hitlist 00249 <<" value of fhitindex "<<fhitindex<<endl; 00250 new((*hitlist)[fhitindex]) UberHit(); 00251 MSG("UberRecordLite",Msg::kDebug)<<"Made new UberHit element in TClonesArray"<<endl; 00252 UberHit *uh = static_cast<UberHit *>((*hitlist)[fhitindex]); 00253 MSG("UberRecordLite",Msg::kDebug)<<"Cast array element to uberhit"<<endl; 00254 int fhi = fhitindex; 00255 uh->SetPlaneStrip(p,s); 00256 // uh->Print(); 00257 fhitindex++; 00258 return fhi; 00259 00260 }//end AddNextHit()
| void UberRecordLite::AddNextHitValues | ( | StripEnd::StripEnd_t | se, | |
| Int_t | adc, | |||
| Float_t | npe, | |||
| Float_t | sigcorr, | |||
| Float_t | mip, | |||
| Float_t | time, | |||
| Int_t | agg | |||
| ) |
Definition at line 263 of file UberRecordLite.cxx.
References UberHit::AddValues(), fhitindex, Msg::kDebug, and MSG.
Referenced by UberModuleLite::Reco().
00266 { 00267 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite AddnextHitValues"<<endl; 00268 UberHit *uh = static_cast<UberHit *>((*hitlist)[fhitindex-1]); 00269 uh->AddValues(se, adc, siglin, npe, mip, time, agg); 00270 return; 00271 }//end AddNextHitValues()
| void UberRecordLite::Clear | ( | Option_t * | option = "" |
) | [virtual] |
| const TClonesArray* UberRecordLite::GetHitList | ( | ) | const [inline] |
| void UberRecordLite::Init | ( | ) | [protected, virtual] |
//-> array of events
Definition at line 158 of file UberRecordLite.cxx.
References coshitlist, evt, RecArrayAllocator::GetArray(), hitlist, RecArrayAllocator::Instance(), Msg::kDebug, MSG, RecRecordImp< UberRecHeader >::SetClearable(), shw, and trk.
Referenced by UberRecordLite().
00159 { 00160 // Added MAK - Feb 28, 2005 00161 SetClearable(true); 00162 00163 MSG("UberRecordLite",Msg::kDebug)<<"In Init"<<endl; 00164 RecArrayAllocator& allocator = RecArrayAllocator::Instance(); 00165 MSG("UberRecordLite",Msg::kDebug)<<"GOT an allocator? "<<endl; 00166 00167 MSG("UberRecordLite",Msg::kDebug)<<"hitlist "<<hitlist<<endl; 00168 if(!hitlist){ 00169 hitlist = allocator.GetArray("UberHit"); 00170 MSG("UberRecordLite",Msg::kDebug)<<"MADE NEW HITLIST"<<endl; 00171 } 00172 if(!coshitlist){ 00173 coshitlist = allocator.GetArray("UberCosmicHit"); 00174 MSG("UberRecordLite",Msg::kDebug)<<"MADE NEW COSHITLIST"<<endl; 00175 } 00176 if(!shw){ 00177 shw = allocator.GetArray("NtpSRShower"); 00178 MSG("UberRecordLite",Msg::kDebug)<<"MADE NEW SHW"<<endl; 00179 } 00180 if(!trk){ 00181 trk = allocator.GetArray("NtpSRTrack"); 00182 MSG("UberRecordLite",Msg::kDebug)<<"MADE NEW TRK"<<endl; 00183 } 00184 if(!evt){ 00185 evt = allocator.GetArray("NtpSREvent"); 00186 MSG("UberRecordLite",Msg::kDebug)<<"MADE NEW EVT"<<endl; 00187 } 00188 // hitlist->Print(); 00189 }//end Init()
| void UberRecordLite::Print | ( | Option_t * | option = "" |
) | const [virtual] |
Reimplemented from RecRecordImp< UberRecHeader >.
Definition at line 296 of file UberRecordLite.cxx.
References Print().
00297 { 00298 UberRecordLite::Print(std::cout); 00299 return; 00300 00301 }
| std::ostream & UberRecordLite::Print | ( | std::ostream & | os | ) | const [virtual] |
Reimplemented from RecRecordImp< UberRecHeader >.
Definition at line 305 of file UberRecordLite.cxx.
References hitlist, UberHit::Print(), and RecRecordImp< T >::Print().
Referenced by Print().
00306 { 00307 os<<"UberRecordLite::Print"<<endl; 00308 RecRecordImp<UberRecHeader>::Print(os); 00309 00310 int i=0; 00311 TObject *obj = 0; 00312 while((obj = hitlist->At(i))){ 00313 UberHit *uh = static_cast<UberHit *>(obj); 00314 os<<"HIT "<<i<<endl; 00315 uh->Print(); 00316 i++; 00317 } 00318 return os; 00319 }//end Print()
| void UberRecordLite::ResetEvent | ( | ) |
Definition at line 192 of file UberRecordLite.cxx.
References ceradc, certime, coshitlist, cpid, evt, fcoshitindex, fhitindex, hitlist, Msg::kDebug, CalDetConstants::KOVCONST, maxadc, maxmip, maxnpe, maxtime, mindeadplaneno, mipshowermax, mipweighaveplane, mipweighcentereven, mipweighcenterodd, mipweighrad, MSG, ndeadplanes, nhitplanes, nhits, nhitstrips, p0maxmiptstamp, p0stripmaxmip, p0totmip, p1maxmiptstamp, p1stripmaxmip, p1totmip, CalDetConstants::PLANECONST, NtpCalDetPID::Reset(), showermax, shw, sigcorrconv, snarlno, CalDetConstants::STRIPCONST, tofadc, CalDetConstants::TOFCONST, tofhittime, toftdc, toftime, torbits, torok, totmip, triggertime, triggerword, and trk.
00193 { 00194 MSG("UberRecordLite",Msg::kDebug)<<"In UberRecordLite ResetEvent"<<endl; 00195 hitlist->Clear(); 00196 fhitindex=0; 00197 coshitlist->Clear(); 00198 fcoshitindex=0; 00199 shw->Clear(); 00200 trk->Clear(); 00201 evt->Clear(); 00202 00203 fhitindex=0; 00204 snarlno=0; 00205 triggerword=0; 00206 triggertime=0.; 00207 nhits=0; 00208 nhitplanes=0; 00209 nhitstrips=0; 00210 ndeadplanes=0; 00211 mindeadplaneno=CalDetConstants::PLANECONST; 00212 sigcorrconv =0.; 00213 totmip=0; 00214 maxadc=0; 00215 maxnpe=0; 00216 maxmip=0; 00217 maxtime=0; 00218 p0totmip=0; 00219 p1totmip=0; 00220 p0stripmaxmip=CalDetConstants::STRIPCONST; 00221 p0maxmiptstamp=0.; 00222 p1stripmaxmip=CalDetConstants::STRIPCONST; 00223 p1maxmiptstamp=0.; 00224 mipweighaveplane=0.; 00225 mipweighcentereven=0.; 00226 mipweighcenterodd=0.; 00227 mipweighrad=0.; 00228 showermax=0; 00229 mipshowermax = 0.; 00230 for(int i=0;i<CalDetConstants::KOVCONST;i++){ 00231 ceradc[i]=0; 00232 certime[i]=0.; 00233 } 00234 for(int i=0;i<CalDetConstants::TOFCONST;i++){ 00235 toftdc[i]=0; 00236 tofadc[i]=0; 00237 tofhittime[i]=0.; 00238 } 00239 toftime=0; 00240 torbits=0; torok=kFALSE; 00241 cpid.Reset(); 00242 }//end ResetEvent()
Definition at line 73 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), ResetEvent(), and UberRecordLite().
Definition at line 74 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), ResetEvent(), and UberRecordLite().
TClonesArray* UberRecordLite::coshitlist [private] |
a variable to keep track of the position of current hit
Definition at line 111 of file UberRecordLite.h.
Referenced by Init(), ResetEvent(), and ~UberRecordLite().
Definition at line 92 of file UberRecordLite.h.
Referenced by ParticleFilterModule::Ana(), UberModuleLite::FillNtpCalDetPID(), and ResetEvent().
| TClonesArray* UberRecordLite::evt |
//-> array of tracks
Definition at line 96 of file UberRecordLite.h.
Referenced by Clear(), UberModuleLite::FillNtpEvent(), Init(), ResetEvent(), and ~UberRecordLite().
UInt_t UberRecordLite::fcoshitindex [private] |
Definition at line 110 of file UberRecordLite.h.
Referenced by AddNextCosmicHit(), AddNextCosmicHitValues(), and ResetEvent().
UInt_t UberRecordLite::fhitindex [private] |
Definition at line 105 of file UberRecordLite.h.
Referenced by AddNextHit(), AddNextHitValues(), and ResetEvent().
TClonesArray* UberRecordLite::hitlist [private] |
a variable to keep track of the position of current hit
Definition at line 106 of file UberRecordLite.h.
Referenced by AddNextHit(), Clear(), GetHitList(), Init(), Print(), ResetEvent(), and ~UberRecordLite().
| Int_t UberRecordLite::maxadc |
Definition at line 54 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::maxmip |
Definition at line 56 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::maxnpe |
Definition at line 55 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::maxtime |
Definition at line 57 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::mindeadplaneno |
Definition at line 51 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::mipshowermax |
Definition at line 69 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::mipweighaveplane |
Definition at line 64 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
Definition at line 65 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
Definition at line 66 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::mipweighrad |
Definition at line 67 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::ndeadplanes |
Definition at line 50 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::nhitplanes |
Definition at line 48 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UInt_t UberRecordLite::nhits |
Definition at line 47 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::nhitstrips |
Definition at line 49 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::p0maxmiptstamp |
Definition at line 61 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::p0stripmaxmip |
Definition at line 60 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::p0totmip |
Definition at line 58 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::p1maxmiptstamp |
Definition at line 63 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::p1stripmaxmip |
Definition at line 62 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::p1totmip |
Definition at line 59 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UShort_t UberRecordLite::showermax |
Definition at line 68 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| TClonesArray* UberRecordLite::shw |
Definition at line 94 of file UberRecordLite.h.
Referenced by Clear(), UberModuleLite::FillNtpShower(), Init(), ResetEvent(), and ~UberRecordLite().
| Float_t UberRecordLite::sigcorrconv |
Definition at line 52 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UInt_t UberRecordLite::snarlno |
Definition at line 44 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
Definition at line 76 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), ResetEvent(), and UberRecordLite().
Definition at line 77 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), ResetEvent(), and UberRecordLite().
Definition at line 75 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), ResetEvent(), and UberRecordLite().
| Float_t UberRecordLite::toftime |
Definition at line 78 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UInt_t UberRecordLite::torbits |
Definition at line 80 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| UInt_t UberRecordLite::torok |
Definition at line 88 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Float_t UberRecordLite::totmip |
Definition at line 53 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| Double_t UberRecordLite::triggertime |
Definition at line 46 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
Definition at line 45 of file UberRecordLite.h.
Referenced by UberModuleLite::Reco(), and ResetEvent().
| TClonesArray* UberRecordLite::trk |
//-> array of showers
Definition at line 95 of file UberRecordLite.h.
Referenced by Clear(), UberModuleLite::FillNtpTrack(), Init(), ResetEvent(), and ~UberRecordLite().
1.4.7