transferred lifetimecorrection from RUN block to the PLOT block. More work towards a working GLOBAL block
This commit is contained in:
@ -94,7 +94,12 @@ Bool_t PRunListCollection::Add(Int_t runNo, EPMusrHandleTag tag)
|
||||
{
|
||||
Bool_t success = true;
|
||||
|
||||
// try to get the fit type from the RUN block
|
||||
Int_t fitType = (*fMsrInfo->GetMsrRunList())[runNo].GetFitType();
|
||||
if (fitType == -1) { // fit type NOT given in the RUN block, check the GLOBAL block
|
||||
fitType = (*fMsrInfo->GetMsrGlobal()).GetFitType();
|
||||
}
|
||||
cout << endl << "debug> PRunListCollection::Add(): fitType=" << fitType << endl;
|
||||
|
||||
switch (fitType) {
|
||||
case PRUN_SINGLE_HISTO:
|
||||
|
Reference in New Issue
Block a user