adopted to the new TLemRunHeader

This commit is contained in:
nemu 2008-03-14 14:05:28 +00:00
parent 470785ca0b
commit 1a61a6565d
2 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ bool PRunDataHandler::ReadRootFile()
int noOfHistos = runHeader->GetNHist();
// get t0's
Int_t *t0 = runHeader->GetTimeZero();
Double_t *t0 = runHeader->GetTimeZero();
// check if t0's are there
if (t0[0] != -1) { // ugly, but at the moment there is no other way
// copy t0's so they are not lost

View File

@ -132,7 +132,7 @@ typedef struct {
double fField; ///< magnetic field value
double fTemp; ///< temperature during the run
double fTimeResolution; ///< time resolution of the run
vector<unsigned int> fT0s; ///< vector of t0's of a run
PDoubleVector fT0s; ///< vector of t0's of a run
vector<PDoubleVector> fDataBin; ///< vector of all histos of a run
} PRawRunData;