]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - T0/AliT0Preprocessor.cxx
Coverity fix
[u/mrichter/AliRoot.git] / T0 / AliT0Preprocessor.cxx
index 0f1626b27f72c586a6e4da1791dc948fad8b9ee2..d19dc2ca74b7026de36e7e805f07c17fc2a48453 100644 (file)
@@ -91,14 +91,11 @@ Bool_t AliT0Preprocessor::ProcessDCS(){
        TString runType = GetRunType();
        Log(Form("ProcessDCS - RunType: %s",runType.Data()));
 
-       if((runType == "STANDALONE")||
-          (runType == "PHYSICS") ){
-
-         //      return kFALSE;
-               return kTRUE;
-       }else{
-       return kFALSE;
-       }
+       if(runType == "PHYSICS" )
+         return kTRUE;
+       else
+         return kFALSE;
+       
 }
 //____________________________________________________