]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
adjusting function names
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Mar 2010 22:32:20 +0000 (22:32 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Mar 2010 22:32:20 +0000 (22:32 +0000)
HLT/pendolino/AliHLTPendolino.cxx
HLT/pendolino/AliHLTPendolino.h
HLT/pendolino/PredictionProcessor/AliHLTPredictionProcessorInterface.cxx

index 6cb5628fc9c11994ef8cff5e49635571f5aee2a4..b2980430ec46b6fdb9ae4b9a0044a442f542b57f 100644 (file)
 //* provided "as is" without express or implied warranty.                  *
 //**************************************************************************
 
-/** @file   AliHLTPendolino.cxx
-    @author Sebastian Bablok
-    @date   
-    @brief  
-*/
+/ @file   AliHLTPendolino.cxx
+//  @author Sebastian Bablok
+//  @date   
+//  @brief  
+//  @note
 
 #include "AliHLTPendolino.h"
 
@@ -373,7 +373,7 @@ AliCDBEntry* AliHLTPendolino::GetFromOCDB(const char* detector,
 }
 
 
-Bool_t AliHLTPendolino::includeAliCDBEntryInList(const TString& entryPath) {
+Bool_t AliHLTPendolino::IncludeAliCDBEntryInList(const TString& entryPath) {
        // includes entry in Taxi list (objects to be fetched from OCDB)
        Bool_t bRet = kFALSE;
        ifstream infile;
@@ -534,7 +534,7 @@ void AliHLTPendolino::RegisterPreprocessor(AliPreprocessor* preprocessor) {
 }
 
 
-UInt_t AliHLTPendolino::setToPredictMaking() {
+UInt_t AliHLTPendolino::SetToPredictMaking() {
        // switches prdiction making on in all registered PredictioProcessors
        UInt_t retVal = 0;
 
@@ -633,7 +633,7 @@ Int_t AliHLTPendolino::setToPredictMaking(TString detector) {
 }
 
 
-Int_t AliHLTPendolino::prepareDCSValues(TString detector, TMap* DCSValues) {
+Int_t AliHLTPendolino::PrepareDCSValues(TString detector, TMap* DCSValues) {
        // function to prepare retrieved DCS values
        Int_t retVal = 0;
        AliHLTPredictionProcessorInterface* aPredict = 0;
@@ -677,7 +677,7 @@ Int_t AliHLTPendolino::prepareDCSValues(TString detector, TMap* DCSValues) {
        return retVal;  
 }
 
-TMap* AliHLTPendolino::emulateDCSMap(TString detector, TString aliasName) {
+TMap* AliHLTPendolino::EmulateDCSMap(TString detector, TString aliasName) {
        // function to generate test data of given PredictionProcessor
        TMap* result = NULL;
        AliHLTPredictionProcessorInterface* aPredict = 0;
index 6bdcdf74acbbfa28b5270e2aa76c1763fed9446f..05d9f665e9e68c4a2f07dba00e0b5d22a47fdde3 100644 (file)
@@ -295,14 +295,14 @@ class AliHLTPendolino : public AliShuttleInterface {
                 *                              more PredictionProcessors, but if switching on failed 
                 *                              for one, this one is not counted.)
                 */
-               virtual UInt_t setToPredictMaking(); 
+               virtual UInt_t SetToPredictMaking(); 
 
                /**
                 * Function to get the number of registered PredictionProcessors
                 *
                 * @return number of registered PredictionProcessors
                 */
-               Int_t getNumberOfPredictProc();
+               Int_t GetNumberOfPredictProc();
 
                /**
                 * Function to check if given PredtionProc allows for processing DCS
@@ -340,7 +340,7 @@ class AliHLTPendolino : public AliShuttleInterface {
                 *
                 * @return 0 on success, else an error code is returned.
                 */
-               virtual Int_t prepareDCSValues(TString detector, TMap* DCSValues);
+               virtual Int_t PrepareDCSValues(TString detector, TMap* DCSValues);
 
                /**
                 * Function to retrieve dummy data for testing the Pendolino from a
@@ -358,7 +358,7 @@ class AliHLTPendolino : public AliShuttleInterface {
                 *                      PredictionProcessor). NOTE: can be NULL, if no corresponding
                 *                      PredictionProcessor is registered.
                 */
-               virtual TMap* emulateDCSMap(TString detector, TString aliasName = "");
+               virtual TMap* EmulateDCSMap(TString detector, TString aliasName = "");
    
                /**
                 * Function to add a entry request to the Taxi lists.
@@ -369,7 +369,7 @@ class AliHLTPendolino : public AliShuttleInterface {
                 * @return true, when successful included or entry already existing in 
                 *                              list; else false.
                 */
-               virtual Bool_t includeAliCDBEntryInList(const TString& entryPath); 
+               virtual Bool_t IncludeAliCDBEntryInList(const TString& entryPath); 
 
                /**
                 * Function to get the start time of the DCS Archive DB request; in HLT
@@ -493,12 +493,12 @@ class AliHLTPendolino : public AliShuttleInterface {
                /**
                 * Stores the start time of the DCS Archive DB request
                 */
-               UInt_t fStartTime;
+                UInt_t fStartTime; //!
 
                /**
                 * Stores the end time of the DCS Archive DB request
                 */
-               UInt_t fEndTime;
+                UInt_t fEndTime; //!
                
                ClassDef(AliHLTPendolino, 6);
 
@@ -515,7 +515,7 @@ inline Int_t AliHLTPendolino::GetRunNumber() {
        return fRunNumber;
 }
 
-inline Int_t AliHLTPendolino::getNumberOfPredictProc() {
+inline Int_t AliHLTPendolino::GetNumberOfPredictProc() {
        // getter for number of registered PredictionProcessors
        return fPredictionProcessorMap.GetSize();
 }
index 2a6801a36a8eaba987ac92694cad978adef988d3..d529e458ff8bb4506ddaf98fefdfd4ff90467ad0 100644 (file)
@@ -48,7 +48,7 @@ Int_t AliHLTPredictionProcessorInterface::GetRunNumber() {
 Bool_t AliHLTPredictionProcessorInterface::includeAliCDBEntryInList(
             const TString& entryPath) {
 
-    return fpPend->includeAliCDBEntryInList(entryPath);
+    return fpPend->IncludeAliCDBEntryInList(entryPath);
 }