]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fixing warnings
authoraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 8 Aug 2010 22:09:39 +0000 (22:09 +0000)
committeraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 8 Aug 2010 22:09:39 +0000 (22:09 +0000)
HLT/pendolino/PredictionProcessor/GRP/AliHLTPredictionProcessorGRP.cxx

index 8dbefe5b714a2645cc658c2768ab98b5444e15fe..5c3cc9f4de9000bf5bcc058454c49cf6e5127cb6 100644 (file)
@@ -96,49 +96,49 @@ UInt_t AliHLTPredictionProcessorGRP::Process(TMap* dcsAliasMap)
   Float_t cavernAtmosPressure2=0.0;
   Float_t surfaceAtmosPressure=0.0;
   
-  Bool_t bRet = kTRUE;
+  //Bool_t bRet = kTRUE;
   const char* key="";
 
   key="L3Current";
   if (!GetSensorValue(dcsAliasMap, key, &l3Current)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="L3Polarity";
   if (!GetSensorValue(dcsAliasMap, key, &l3Polarity)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="DipoleCurrent";
   if (!GetSensorValue(dcsAliasMap, key, &dipoleCurrent)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="DipolePolarity";
   if (!GetSensorValue(dcsAliasMap, key, &dipolePolarity)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="CavernAtmosPressure";
   if (!GetSensorValue(dcsAliasMap, key, &cavernAtmosPressure)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="CavernAtmosPressure2";
   if (!GetSensorValue(dcsAliasMap, key, &cavernAtmosPressure2)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   key="SurfaceAtmosPressure2";
   if (!GetSensorValue(dcsAliasMap, key, &surfaceAtmosPressure)) {
     Log(Form("failed to extract %s from alias map", key));
-    bRet=kFALSE;
+    //bRet=kFALSE;
   }
 
   AliGRPObject* grpObj=NULL;