From bece5229fbee1b25fea4f0fcf0d607d7f8a6d484 Mon Sep 17 00:00:00 2001 From: hdalsgaa Date: Wed, 26 Mar 2008 10:15:14 +0000 Subject: [PATCH] Changed the constructor to include calls to AddRunType(...). This change was required by the shuttle team at CERN. --- FMD/AliFMDPreprocessor.cxx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/FMD/AliFMDPreprocessor.cxx b/FMD/AliFMDPreprocessor.cxx index e3bab082bcc..b554265b846 100644 --- a/FMD/AliFMDPreprocessor.cxx +++ b/FMD/AliFMDPreprocessor.cxx @@ -83,6 +83,18 @@ ClassImp(AliFMDPreprocessor) ; #endif + +//____________________________________________________ +AliFMDPreprocessor::AliFMDPreprocessor(AliShuttleInterface* shuttle) + : AliPreprocessor("FMD", shuttle) +{ + AddRunType("PHYSICS"); + AddRunType("STANDALONE"); + AddRunType("PEDESTAL"); + AddRunType("GAIN"); +} + + //____________________________________________________ Bool_t AliFMDPreprocessor::GetAndCheckFileSources(TList*& list, Int_t system, @@ -170,7 +182,7 @@ UInt_t AliFMDPreprocessor::Process(TMap* /* dcsAliasMap */) } resultPed = (calibPed ? kTRUE : kFALSE); } - if (runType.Contains("PULSER", TString::kIgnoreCase)) { + if (runType.Contains("GAIN", TString::kIgnoreCase)) { if (GetAndCheckFileSources(files, kDAQ, "gains")) { if(files->GetSize()) calibGain = GetGainCalibration(files); -- 2.43.0