From: dsilverm Date: Thu, 29 Apr 2010 14:36:30 +0000 (+0000) Subject: only process physics and pedestals runs - no longer standalone runs X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=541176c5dc0d1567f329c976c41b3c827283561e only process physics and pedestals runs - no longer standalone runs --- diff --git a/EMCAL/AliEMCALPreprocessor.cxx b/EMCAL/AliEMCALPreprocessor.cxx index aa52cd228c2..8f85f1a4712 100644 --- a/EMCAL/AliEMCALPreprocessor.cxx +++ b/EMCAL/AliEMCALPreprocessor.cxx @@ -81,7 +81,6 @@ AliEMCALPreprocessor::AliEMCALPreprocessor(AliShuttleInterface* shuttle): // define run types to be processed AddRunType(kPedestalRunType); AddRunType(kPhysicsRunType); - AddRunType(kStandAloneRunType); } //______________________________________________________________________________________________ @@ -199,7 +198,7 @@ UInt_t AliEMCALPreprocessor::Process(TMap* dcsAliasMap) // PEDESTAL ENTRIES: - if (runType == kPedestalRunType || runType == kStandAloneRunType) { + if ( runType == kPedestalRunType ) { Int_t numSources = 1; Int_t pedestalSource[2] = {AliShuttleInterface::kDAQ, AliShuttleInterface::kHLT} ; TString source = fConfEnv->GetValue("Pedestal","DAQ"); @@ -225,7 +224,7 @@ UInt_t AliEMCALPreprocessor::Process(TMap* dcsAliasMap) } // SIGNAL/LED ENTRIES: - if( runType == kPhysicsRunType || runType == kStandAloneRunType ) { + if( runType == kPhysicsRunType ) { Int_t numSources = 1; Int_t signalSource[2] = {AliShuttleInterface::kDAQ,AliShuttleInterface::kHLT} ; TString source = fConfEnv->GetValue("Signal","DAQ");