From 52f6e34b7d923d0f91c44709b231934cf324d1e4 Mon Sep 17 00:00:00 2001 From: ivana Date: Mon, 10 Dec 2007 15:14:58 +0000 Subject: [PATCH] Do not give an error for run types, when we should not do anything; just print an info message instead (Laurent) --- MUON/AliMUONTrackerPreprocessor.cxx | 5 ++--- MUON/AliMUONTriggerPreprocessor.cxx | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/MUON/AliMUONTrackerPreprocessor.cxx b/MUON/AliMUONTrackerPreprocessor.cxx index f4988c7eb60..8d813bacda0 100644 --- a/MUON/AliMUONTrackerPreprocessor.cxx +++ b/MUON/AliMUONTrackerPreprocessor.cxx @@ -68,7 +68,7 @@ AliMUONTrackerPreprocessor::~AliMUONTrackerPreprocessor() void AliMUONTrackerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime) { - /// Re-register the subprocessor(s) depnding on the actual runTYpe + /// Re-register the subprocessor(s) depending on the actual runType ClearSubprocessors(); @@ -99,8 +99,7 @@ AliMUONTrackerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTi } else { - Log(Form("ERROR-Unknown RunType=%",runType.Data())); - fIsValid = kFALSE; + Log(Form("WARNING-RunType=%s is not one I should handle.",runType.Data())); } AliMUONPreprocessor::Initialize(run,startTime,endTime); diff --git a/MUON/AliMUONTriggerPreprocessor.cxx b/MUON/AliMUONTriggerPreprocessor.cxx index adbcf017451..3c7b720bcd1 100644 --- a/MUON/AliMUONTriggerPreprocessor.cxx +++ b/MUON/AliMUONTriggerPreprocessor.cxx @@ -70,8 +70,7 @@ AliMUONTriggerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTi } else { - Log(Form("ERROR-Unknown RunType=%",runType.Data())); - fIsValid = kFALSE; + Log(Form("WARNING-RunType=%s is not one I should handle.",runType.Data())); } AliMUONPreprocessor::Initialize(run,startTime,endTime); -- 2.43.0