From 541176c5dc0d1567f329c976c41b3c827283561e Mon Sep 17 00:00:00 2001 From: dsilverm Date: Thu, 29 Apr 2010 14:36:30 +0000 Subject: [PATCH] only process physics and pedestals runs - no longer standalone runs --- EMCAL/AliEMCALPreprocessor.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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"); -- 2.43.0