]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Do not give an error for run types, when we should not do anything;
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 10 Dec 2007 15:14:58 +0000 (15:14 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 10 Dec 2007 15:14:58 +0000 (15:14 +0000)
just print an info message instead
(Laurent)

MUON/AliMUONTrackerPreprocessor.cxx
MUON/AliMUONTriggerPreprocessor.cxx

index f4988c7eb60050816b105a42bafdd420949cc9cf..8d813bacda0443fae51b10d56fce1534f12d1f5f 100644 (file)
@@ -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);
index adbcf01745164358925f550bbf7e4192dbeef841..3c7b720bcd196aeaa5773b8aa472d81cf84dfcf1 100644 (file)
@@ -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);