]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Provide return value if the function is not void
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 2 Nov 2007 15:41:49 +0000 (15:41 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 2 Nov 2007 15:41:49 +0000 (15:41 +0000)
HLT/PHOS/AliHLTPHOSBaselineAnalyzerComponent.cxx
HLT/PHOS/AliHLTPHOSDigitMakerComponent.cxx
HLT/PHOS/AliHLTPHOSRcuDigitMakerComponent.cxx
HLT/TRD/AliHLTTRDCalibrationComponent.cxx
T0/AliT0Align.cxx
TOF/AliTOFcalib.cxx

index 890d968f1a746e9dc627d42c20a6077cc530013c..fc4db1840610347f4512a89e3cf3c25f1b61cda7 100644 (file)
@@ -70,6 +70,7 @@ AliHLTPHOSBaselineAnalyzerComponent::Deinit()
       delete fFilename;
       fFilename = 0;
     }
+  return 0;
 }
 
 const char*
index 73e15363a7eea95d4724fd7a08d02f03cdc42a4f..835c1bdfd60e85d80d4245666460a4801ca6ba86 100644 (file)
@@ -36,6 +36,7 @@ AliHLTPHOSDigitMakerComponent::Deinit()
       delete fDigitMakerPtr;
       fDigitMakerPtr = 0;
     }
+  return 0;
 }
 
 const char*
index 34eb1154c07f2a94f57b39f994c71ebbeda630bf..4171f2b2f23e4f6709d92ddb08f82d924fa2da46 100644 (file)
@@ -36,6 +36,7 @@ AliHLTPHOSRcuDigitMakerComponent::Deinit()
       delete fDigitMakerPtr;
       fDigitMakerPtr = 0;
     }
+  return 0;
 }
 
 const char*
index f20f6fd9a58271eed052701560b4c2fa7bb713c1..065fd9bc44ff07c9c6a3b6758653874c310147e3 100644 (file)
@@ -153,7 +153,7 @@ Int_t AliHLTTRDCalibrationComponent::InitCalibration()
       fCDB->SetDefaultStorage(fStrorageDBpath.c_str());
       Logging(kHLTLogDebug, "HLT::TRDCalibration::InitCalibration", "CDB instance", "fCDB 0x%x", fCDB);
     }
-
+  return 0;
 }
 
 Int_t AliHLTTRDCalibrationComponent::DeinitCalibration()
@@ -165,6 +165,7 @@ Int_t AliHLTTRDCalibrationComponent::DeinitCalibration()
       fCDB->Destroy();
       fCDB = 0;
     }
+  return 0;
 }
 
 Int_t AliHLTTRDCalibrationComponent::ProcessCalibration( const AliHLTComponentEventData& evtData, AliHLTComponentTriggerData& trigData)
index 4137fa710441271cf45b8aae018ce7d0382a83f1..ac82c400a66cc1efe8d818790a67ed23ea3c36ff 100644 (file)
@@ -178,7 +178,7 @@ Double_t AliT0Align::ComputePosition()
 {
  //  Float_t fZPos, shift;
  //  fZPos = surveyedPoints[3] - shift;
-       
+  return 99999;
 }
 //_______________________________________________________________________
 void AliT0Align::CreateAlignObj(){
index 9f2148d808d853f41c49c8b0c8c494d8ce116edd..567803e2d44a324d892947b7da61e6e6bc18ebef 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.20  2007/10/26 15:13:50  zampolli
+Using a TChain instead of a TTree
+
 Revision 1.19  2007/10/23 15:27:38  zampolli
 Rearrangement of Calibration objects for simulation
 
@@ -363,6 +366,7 @@ Bool_t AliTOFcalib::ReadSimHistoFromCDB(Char_t *sel, Int_t nrun)
   }  
   TH1F *histo =(TH1F*)entry->GetObject();
   fTOFSimToT=histo;
+  return kTRUE;
 }
 //_____________________________________________________________________________
 void AliTOFcalib::WriteRecParOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun, AliTOFRecoParam *param){