add field, temperature values from meta-data of the data-files to the runs. This will be needed if functions want to access this information (not yet implemented).

This commit is contained in:
2020-06-13 16:13:44 +02:00
parent f03b918840
commit 602a5a4e6c
7 changed files with 39 additions and 0 deletions

View File

@ -49,6 +49,7 @@ PRunBase::PRunBase()
fRunNo = -1;
fRunInfo = nullptr;
fRawData = nullptr;
fField = -1.0;
fTimeResolution = -1.0;
fFitStartTime = PMUSR_UNDEFINED;
@ -90,6 +91,7 @@ PRunBase::PRunBase(PMsrHandler *msrInfo, PRunDataHandler *rawData, UInt_t runNo,
}
// init private variables
fField = -1.0;
fTimeResolution = -1.0;
for (Int_t i=0; i<fMsrInfo->GetNoOfFuncs(); i++)
fFuncValues.push_back(0.0);