//======================================================= // // TpcEvent class, TpcEvent.cxx // // Written by Xiaodong Zhang on October 02, 2009 // Physics Department E18, TUM // //======================================================= #include "TpcEvent.h" #include ClassImp(TpcEvent) //___________________________________________________________________________ TpcEvent::TpcEvent() :eventNb(-1), runNb(-1) ,nbofSamplesDrift(300), nbofSamplesBeforeDrift(10) ,nbofSamplesAfterDrift(10), firstSample(0) ,HV(100), angle(0), triggerType("rnd"), triggerRate(-1) ,temperature(-1), err_mask(0) // 0 means no error, otherwise error. , fSpillNb(-1), _time(-1) { eventVector.reserve(200000); } //___________________________________________________________________________ TpcEvent::~TpcEvent() {;} //___________________________________________________________________________ std::ostream& operator<<(std::ostream& os, const TpcEvent& me) { os << "TpcEvent:\n" << " eventNb(nbInRun) ="<