]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
coding conventions
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 12 Oct 2007 13:24:47 +0000 (13:24 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 12 Oct 2007 13:24:47 +0000 (13:24 +0000)
18 files changed:
HLT/BASE/AliHLTCalibrationProcessor.cxx
HLT/BASE/AliHLTCalibrationProcessor.h
HLT/BASE/AliHLTComponent.cxx
HLT/BASE/AliHLTConfiguration.cxx
HLT/BASE/AliHLTConfiguration.h
HLT/BASE/AliHLTDataBuffer.cxx
HLT/BASE/AliHLTDataBuffer.h
HLT/BASE/AliHLTLogging.h
HLT/BASE/AliHLTTask.h
HLT/BASE/HOMER/AliHLTHOMERReader.cxx
HLT/BASE/HOMER/AliHLTHOMERReader.h
HLT/BASE/HOMER/AliHLTHOMERWriter.cxx
HLT/BASE/HOMER/AliHLTHOMERWriter.h
HLT/BASE/util/AliHLTDataGenerator.cxx
HLT/SampleLib/AliHLTAgentSample.h
HLT/TPCLib/AliHLTTPCAgent.h
HLT/rec/AliHLTReconstructor.cxx
HLT/rec/AliHLTReconstructor.h

index 6d8bb8eb48e99e7615e4551d2ebe773f940dbed1..ee802bcc2ac63109087bbc65ea2dee6513cc60de 100644 (file)
  * @date 
  * @brief  Base class of HLT calibration components.  */
 
+// see header file for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
 #if __GNUC__ >= 3
 using namespace std;
 #endif
@@ -388,6 +394,7 @@ Int_t AliHLTCalibrationProcessor::PushToFXS(TObject* pObject, const char* pDetec
 } // Int_t AliHLTCalibrationProcessor::PushToFXS(TObject* pObject, const char* detector, const char* pFileID, const char* pDDLNumber ) {
 
 Int_t AliHLTCalibrationProcessor::PushToFXS( void* pBuffer, int iSize, const char* pDetector, const char* pFileID, const char* pDDLNumber ) {
+  // see header file for class documentation
 
   Int_t iResult = 0;
   
index 3d9741828b26e6067306d040bd25dc8e7e1ced66..5a893fbcd22db9c958c7d9bc6849d50d70705fba 100644 (file)
@@ -5,7 +5,6 @@
  * ALICE Experiment at CERN, All rights reserved.                         *
  * See cxx source for full Copyright notice                               */
 
-
 /**
  * Class takes care of handling and shipping of freshly produced calibration
  * data. this data will be shipped to the FXS of the HLT
@@ -49,10 +48,6 @@ class AliHLTCalibrationProcessor : public AliHLTProcessor {
   /** standard destructor */
   virtual ~AliHLTCalibrationProcessor();
 
-  /** Constants  */ 
-  static const AliHLTUInt32_t fgkFXSProtocolHeaderSize;
-  static const AliHLTUInt32_t fgkFXSProtocolHeaderVersion;
-
  protected:
 
   /*
@@ -84,6 +79,10 @@ class AliHLTCalibrationProcessor : public AliHLTProcessor {
    */
    Int_t PushToFXS(void* pBuffer, int iSize, const char* pDetector, const char* pFileID, const char* pDDLNumber = "");
 
+  /** Constants  */ 
+  static const AliHLTUInt32_t fgkFXSProtocolHeaderSize;
+  static const AliHLTUInt32_t fgkFXSProtocolHeaderVersion;
+
  private:
 
   /*
index 8917bda3e5084d4854ad4e2fe9f648504bc5b1af..ae8e5b6410b70e58c56de157a7d29f9d235191ec 100644 (file)
     @date   
     @brief  Base class implementation for HLT components. */
 
+// see header file for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
 #if __GNUC__>= 3
 using namespace std;
 #endif
@@ -212,6 +218,7 @@ int AliHLTComponent::DoDeinit()
 
 int AliHLTComponent::GetOutputDataTypes(vector<AliHLTComponentDataType>& /*tgtList*/)
 {
+  HLTLogKeyword("dummy");
   return 0;
 }
 
@@ -905,6 +912,7 @@ AliHLTMemoryFile* AliHLTComponent::CreateMemoryFile(const AliHLTComponentDataTyp
 int AliHLTComponent::Write(AliHLTMemoryFile* pFile, const TObject* pObject,
                           const char* key, int option)
 {
+  // see header file for function documentation
   int iResult=0;
   if (pFile && pObject) {
     pFile->cd();
@@ -925,6 +933,7 @@ int AliHLTComponent::Write(AliHLTMemoryFile* pFile, const TObject* pObject,
 
 int AliHLTComponent::CloseMemoryFile(AliHLTMemoryFile* pFile)
 {
+  // see header file for function documentation
   int iResult=0;
   if (pFile) {
     vector<AliHLTMemoryFile*>::iterator element=fMemFiles.begin();
index 3944ae37f2daab8414a49276231cd9dc13eac9ef..e02c0fc74f623c4e086250ed26fb6670d2f03294 100644 (file)
     @brief  Implementation of HLT configuration handler.
 */
 
+// see header file for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
 #if __GNUC__>= 3
 using namespace std;
 #endif
@@ -51,7 +57,12 @@ AliHLTConfiguration::AliHLTConfiguration()
   fArgc(-1),
   fArgv(NULL)
 { 
-  // see header file for function documentation
+  // see header file for class documentation
+  // or
+  // refer to README to build package
+  // or
+  // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
   fListSrcElement=fListSources.begin();
 }
 
@@ -447,6 +458,7 @@ AliHLTTask::AliHLTTask(AliHLTConfiguration* pConf)
 
 AliHLTTask::~AliHLTTask()
 {
+  // see header file for function documentation
   TObjLink* lnk=fListDependencies.FirstLink();
 
   while (lnk!=NULL) {
@@ -631,6 +643,7 @@ int AliHLTTask::SetDependency(AliHLTTask* pDep)
 
 int AliHLTTask::UnsetDependency(AliHLTTask* pDep)
 {
+  // see header file for function documentation
   fListDependencies.Remove(pDep);
   if (fpConfiguration) {
     fpConfiguration->InvalidateSources();
index 19553a00955f3ced00c6af86785e3add491c23e9..5a0d4e459f4b26ff82a1072bd7e5bb0adc3c7f09 100644 (file)
@@ -20,7 +20,6 @@
 // or
 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt   
 
-#include <cerrno>
 #include <vector>
 #include <TObject.h>
 #include <TList.h>
index f85a7609f6082e843008e838477c9c678c992dfd..3f050fb63e3d1570cad84bd881e98da98e9b6c99 100644 (file)
@@ -631,26 +631,30 @@ int AliHLTDataBuffer::FindConsumer(AliHLTComponent* pConsumer, int bAllLists)
   return 0;
 }
 
-int AliHLTDataBuffer::AliHLTRawBuffer::operator==(void* ptr)
+int AliHLTDataBuffer::AliHLTRawBuffer::operator==(void* ptr) const
 {
+  // see header file for function documentation
   return fPtr == static_cast<AliHLTUInt8_t*>(ptr);
 }
 
-int AliHLTDataBuffer::AliHLTRawBuffer::operator<=(void* ptr)
+int AliHLTDataBuffer::AliHLTRawBuffer::operator<=(void* ptr) const
 {
+  // see header file for function documentation
   int iResult=fPtr <= static_cast<AliHLTUInt8_t*>(ptr);
   //printf("%p: %p <= %p (%d)\n", this, fPtr, ptr, iResult);
   return iResult;
 }
 
-int AliHLTDataBuffer::AliHLTRawBuffer::operator>(void* ptr)
+int AliHLTDataBuffer::AliHLTRawBuffer::operator>(void* ptr) const
 {
+  // see header file for function documentation
   int iResult=fPtr+fSize > static_cast<AliHLTUInt8_t*>(ptr);
   //printf("%p: %p + %d > %p (%d)\n", this, fPtr, fSize, ptr, iResult);
   return iResult;
 }
 
-int AliHLTDataBuffer::AliHLTRawBuffer::operator-(void* ptr)
+int AliHLTDataBuffer::AliHLTRawBuffer::operator-(void* ptr) const
 {
+  // see header file for function documentation
   return static_cast<int>(static_cast<AliHLTUInt8_t*>(ptr)-fPtr);
 }
index fa3797f883f2a738a28ed292458214e0afd51e32..df9c26082977b752aba26180c203d2a70c0a64f9 100644 (file)
@@ -249,14 +249,14 @@ class AliHLTDataBuffer : public TObject, public AliHLTLogging
     /** standard destructor */
     virtual ~AliHLTRawBuffer() {}
 
-    int operator==(void*);
-    int operator==(AliHLTUInt8_t* ptr) {return fPtr==ptr;}
-    int operator<=(void*);
-    int operator>(void*);
-    int operator-(void*);
-
-    operator void*() {return fPtr;}
-    operator AliHLTUInt8_t*() {return fPtr;}
+    int operator==(void*) const;
+    int operator==(AliHLTUInt8_t* ptr) const {return fPtr==ptr;}
+    int operator<=(void*) const;
+    int operator>(void*) const;
+    int operator-(void*) const;
+
+    operator void*() const {return fPtr;}
+    operator AliHLTUInt8_t*() const {return fPtr;}
 
   private:
     /** size of the currently occupied partition of the buffer */
index c9c02c3b7da6b7c8f93dd96ffc335dea2e301bfa..5fe82446b4bb55610eb00e9391fd89c724d22d12 100644 (file)
@@ -47,7 +47,7 @@ class AliHLTComponentHandler;
 #define HLTFatal( ... )     if (CheckFilter(kHLTLogFatal))   LoggingVarargs(kHLTLogFatal,     Class_Name() , FUNCTIONNAME() , __FILE__ , __LINE__ , __VA_ARGS__ )
 
 // helper macro to set the keyword
-#define HLTLogKeyword(a)    AliHLTKeyword hltlogTmpkey__LINE__(this, a)
+#define HLTLogKeyword(a)    AliHLTKeyword hltlogTmpkey(this, a)
 
 #define HLT_DEFAULT_LOG_KEYWORD "no key"
 
index 3a10909e3727233aab9b381c256971b86f53aefa..c63bdc267ca11b22668884a086dfe60e62c38cbe 100644 (file)
@@ -19,7 +19,6 @@
 // or
 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt   
 
-#include <cerrno>
 #include <TObject.h>
 #include <TList.h>
 #include "AliHLTDataTypes.h"
index 42c992a0b7f63bfae7d9a042d2eb5518a9b30616..4577c07cfe89f1738f4facdd01b69d70e4771d07 100644 (file)
@@ -800,7 +800,7 @@ void HOMERReader::ReleaseCurrentEvent()
        }
     }
 
-int HOMERReader::TriggerTCPSource( DataSource& source, bool useTimeout, unsigned long timeout_us )
+int HOMERReader::TriggerTCPSource( DataSource& source, bool useTimeout, unsigned long timeoutUsec )
     {
 // see header file for class documentation
     int ret;
@@ -817,8 +817,8 @@ int HOMERReader::TriggerTCPSource( DataSource& source, bool useTimeout, unsigned
            {
            return ENXIO;
            }
-       newSndTO.tv_sec = timeout_us / 1000000;
-       newSndTO.tv_usec = timeout_us - (newSndTO.tv_sec*1000000);
+       newSndTO.tv_sec = timeoutUsec / 1000000;
+       newSndTO.tv_usec = timeoutUsec - (newSndTO.tv_sec*1000000);
        ret = setsockopt( source.fTCPConnection, SOL_SOCKET, SO_SNDTIMEO, &newSndTO, sizeof(newSndTO) );
        if ( ret )
            {
@@ -876,6 +876,7 @@ int HOMERReader::TriggerShmSource( DataSource& source, bool, unsigned long )
 
 int HOMERReader::ReadDataFromTCPSources( unsigned sourceCnt, DataSource* sources, bool useTimeout, unsigned long timeout )
     {
+// see header file for class documentation
     bool toRead = false;
     do
        {
@@ -1173,8 +1174,33 @@ homer_uint64 HOMERReader::GetSourceEventType( DataSource& source )
     return Swap( kHOMERNativeByteOrder, sourceByteOrder, ((homer_uint64*)source.fData)[ kType_64b_Offset ] );
     }
 
+homer_uint64 HOMERReader::Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint64 source ) const
+    {
+// see header file for class documentation
+    if ( destFormat == sourceFormat )
+        return source;
+    else
+        return ((source & 0xFFULL) << 56) | 
+       ((source & 0xFF00ULL) << 40) | 
+       ((source & 0xFF0000ULL) << 24) | 
+       ((source & 0xFF000000ULL) << 8) | 
+       ((source & 0xFF00000000ULL) >> 8) | 
+       ((source & 0xFF0000000000ULL) >> 24) | 
+       ((source & 0xFF000000000000ULL) >>  40) | 
+       ((source & 0xFF00000000000000ULL) >> 56);
+    }
 
-
+homer_uint32 HOMERReader::Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint32 source ) const
+    {
+// see header file for class documentation
+    if ( destFormat == sourceFormat )
+        return source;
+    else
+        return ((source & 0xFFUL) << 24) | 
+       ((source & 0xFF00UL) << 8) | 
+       ((source & 0xFF0000UL) >> 8) | 
+       ((source & 0xFF000000UL) >> 24);
+    }
 /*
 ***************************************************************************
 **
index f3377b81a26cf2edc0f7e8b982208bf64fea3017..8bcde0d1f4533df8dd1eb56697210a6a61bfc703 100644 (file)
@@ -1,6 +1,6 @@
 // XEMacs -*-C++-*-
-#ifndef _HOMER_H_
-#define _HOMER_H_
+#ifndef AliHLTHOMERREADER_H
+#define AliHLTHOMERREADER_H
 /* This file is property of and copyright by the ALICE HLT Project        * 
  * ALICE Experiment at CERN, All rights reserved.                         *
  * See cxx source for full Copyright notice                               */
@@ -249,30 +249,9 @@ class HOMERReader: public MonitoringReader
        int ReAllocBlocks( unsigned long newCnt );
        homer_uint64 GetSourceEventID( DataSource& source );
        homer_uint64 GetSourceEventType( DataSource& source );
-       homer_uint64 Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint64 source )
-               {
-               if ( destFormat == sourceFormat )
-                   return source;
-               else
-                   return ((source & 0xFFULL) << 56) | 
-                       ((source & 0xFF00ULL) << 40) | 
-                       ((source & 0xFF0000ULL) << 24) | 
-                       ((source & 0xFF000000ULL) << 8) | 
-                       ((source & 0xFF00000000ULL) >> 8) | 
-                       ((source & 0xFF0000000000ULL) >> 24) | 
-                       ((source & 0xFF000000000000ULL) >>  40) | 
-                       ((source & 0xFF00000000000000ULL) >> 56);
-               }
-       homer_uint32 Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint32 source )
-               {
-               if ( destFormat == sourceFormat )
-                   return source;
-               else
-                   return ((source & 0xFFUL) << 24) | 
-                       ((source & 0xFF00UL) << 8) | 
-                       ((source & 0xFF0000UL) >> 8) | 
-                       ((source & 0xFF000000UL) >> 24);
-               }
+        homer_uint64 Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint64 source ) const;
+
+        homer_uint32 Swap( homer_uint8 destFormat, homer_uint8 sourceFormat, homer_uint32 source ) const;
 
 
        struct DataBlock
@@ -324,4 +303,4 @@ class HOMERReader: public MonitoringReader
 #endif
     };
 
-#endif /* _HOMER_H_ */
+#endif /* AliHLTHOMERREADER_H */
index d18c68ecffedead300443f937a66352a5a7d3310..3e8adfb9c6e5c22c5097e753be7735d9c8380ff1 100644 (file)
@@ -137,76 +137,6 @@ void HOMERWriter::Copy( void* destination, homer_uint64 eventType, homer_uint64
        iter++;
        }
     }
-       
-
-
-
-    struct HOMERWriterAlignment64TestStructure
-    {
-       homer_uint64 f64Fill;
-       homer_uint64 f64Test64;
-       homer_uint32 f32Fill;
-       homer_uint64 f64Test32;
-       homer_uint16 f16Fill;
-       homer_uint64 f64Test16;
-       homer_uint8  f8Fill;
-       homer_uint64 f64Test8;
-    };
-    struct HOMERWriterAlignment32TestStructure
-    {
-       homer_uint64 f64Fill;
-       homer_uint32 f32Test64;
-       homer_uint32 f32Fill;
-       homer_uint32 f32Test32;
-       homer_uint16 f16Fill;
-       homer_uint32 f32Test16;
-       homer_uint8  f8Fill;
-       homer_uint32 f32Test8;
-    };
-    struct HOMERWriterAlignment16TestStructure
-    {
-       homer_uint64 f64Fill;
-       homer_uint16 f16Test64;
-       homer_uint32 f32Fill;
-       homer_uint16 f16Test32;
-       homer_uint16 f16Fill;
-       homer_uint16 f16Test16;
-       homer_uint8  f8Fill;
-       homer_uint16 f16Test8;
-    };
-    struct HOMERWriterAlignment8TestStructure
-    {
-       homer_uint64 f64Fill;
-       homer_uint8 f8Test64;
-       homer_uint32 f32Fill;
-       homer_uint8 f8Test32;
-       homer_uint16 f16Fill;
-       homer_uint8 f8Test16;
-       homer_uint8  f8Fill;
-       homer_uint8 f8Test8;
-    };
-    struct HOMERWriterAlignmentDoubleTestStructure
-    {
-       homer_uint64 f64Fill;
-       double fDoubleTest64;
-       homer_uint32 f32Fill;
-       double fDoubleTest32;
-       homer_uint16 f16Fill;
-       double fDoubleTest16;
-       homer_uint8  f8Fill;
-       double fDoubleTest8;
-    };
-    struct HOMERWriterAlignmentFloatTestStructure
-    {
-       homer_uint64 f64Fill;
-       float fFloatTest64;
-       homer_uint32 f32Fill;
-       float fFloatTest32;
-       homer_uint16 f16Fill;
-       float fFloatTest16;
-       homer_uint8  f8Fill;
-       float fFloatTest8;
-    };
 
 homer_uint8 HOMERWriter::DetermineUInt64Alignment()
     {
index 4c73f1fd000768d9a82f6afdf14494798615e822..0554483489b5598e693d30b7b5aee3e18ea49d62 100644 (file)
@@ -1,6 +1,6 @@
 // XEMacs -*-C++-*-
-#ifndef _HOMERWRITER_HPP_
-#define _HOMERWRITER_HPP_
+#ifndef ALIHLTHOMERWRITER_H
+#define ALIHLTHOMERWRITER_H
 /************************************************************************
 **
 **
@@ -77,6 +77,72 @@ class HOMERWriter
        static homer_uint8 DetermineFloatAlignment();
 
 
+        struct HOMERWriterAlignment64TestStructure
+        {
+               homer_uint64 f64Fill;   // !
+               homer_uint64 f64Test64; // !
+               homer_uint32 f32Fill;   // !
+               homer_uint64 f64Test32; // !
+               homer_uint16 f16Fill;   // !
+               homer_uint64 f64Test16; // !
+               homer_uint8  f8Fill;    // !
+               homer_uint64 f64Test8;  // !
+        };
+        struct HOMERWriterAlignment32TestStructure
+        {
+               homer_uint64 f64Fill;   // !
+               homer_uint32 f32Test64; // !
+               homer_uint32 f32Fill;   // !
+               homer_uint32 f32Test32; // !
+               homer_uint16 f16Fill;   // !
+               homer_uint32 f32Test16; // !
+               homer_uint8  f8Fill;    // !
+               homer_uint32 f32Test8;  // !
+        };
+        struct HOMERWriterAlignment16TestStructure
+        {
+               homer_uint64 f64Fill;   // !
+               homer_uint16 f16Test64; // !
+               homer_uint32 f32Fill;   // !
+               homer_uint16 f16Test32; // !
+               homer_uint16 f16Fill;   // !
+               homer_uint16 f16Test16; // !
+               homer_uint8  f8Fill;    // !
+               homer_uint16 f16Test8;  // !
+        };
+        struct HOMERWriterAlignment8TestStructure
+        {
+               homer_uint64 f64Fill; // !
+               homer_uint8 f8Test64; // !
+               homer_uint32 f32Fill; // !
+               homer_uint8 f8Test32; // !
+               homer_uint16 f16Fill; // !
+               homer_uint8 f8Test16; // !
+               homer_uint8  f8Fill;  // !
+               homer_uint8 f8Test8;  // !
+        };
+        struct HOMERWriterAlignmentDoubleTestStructure
+        {
+               homer_uint64 f64Fill; // !
+               double fDoubleTest64; // !
+               homer_uint32 f32Fill; // !
+               double fDoubleTest32; // !
+               homer_uint16 f16Fill; // !
+               double fDoubleTest16; // !
+               homer_uint8  f8Fill;  // !
+               double fDoubleTest8;  // !
+        };
+        struct HOMERWriterAlignmentFloatTestStructure
+        {
+               homer_uint64 f64Fill; // !
+               float fFloatTest64;   // !
+               homer_uint32 f32Fill; // !
+               float fFloatTest32;   // !
+               homer_uint16 f16Fill; // !
+               float fFloatTest16;   // !
+               homer_uint8  f8Fill;  // !
+               float fFloatTest8;    // !
+        };
     protected:
 
 
@@ -109,4 +175,4 @@ class HOMERWriter
 ***************************************************************************
 */
 
-#endif // _HOMERWRITER_HPP_
+#endif // ALIHLTHOMERWRITER_H
index c483a18ac7dcfa897e11e54786541c856c426e63..063ad5ffffe77df45f191a91b15c305ba87a97b8 100644 (file)
     @date   
     @brief  HLT file publisher component implementation. */
 
+// see header file for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
 #if __GNUC__>= 3
 using namespace std;
 #endif
@@ -76,6 +82,7 @@ AliHLTComponentDataType AliHLTDataGenerator::GetOutputDataType()
 
 int AliHLTDataGenerator::GetOutputDataTypes(vector<AliHLTComponentDataType>& tgtList)
 {
+  // see header file for class documentation
   int count=0;
   tgtList.clear();
   tgtList.push_back(fDataType);
@@ -189,6 +196,7 @@ int AliHLTDataGenerator::DoInit( int argc, const char** argv )
 
 int AliHLTDataGenerator::ScanSizeArgument(AliHLTUInt32_t &size, const char* arg)
 {
+  // see header file for class documentation
   int iResult=0;
   if (arg) {
     TString parameter(arg);
@@ -236,6 +244,7 @@ int AliHLTDataGenerator::GetEvent( const AliHLTComponentEventData& /*evtData*/,
                                   AliHLTUInt32_t& size,
                                   vector<AliHLTComponentBlockData>& outputBlocks )
 {
+  // see header file for class documentation
   int iResult=0;
   AliHLTUInt32_t generated=fCurrSize;
   if (generated<=size ) {
index f3310e08d762708767bd0951e1d6f4f4c2e27a91..382620cbdd6163d5f763dcdaaaaa0fb603155887 100644 (file)
@@ -44,7 +44,6 @@
  *   return "libAliHLTUtil.so";
  *   </pre>
  * - not implemented are the in iterface methods
- *   - @ref AliHLTModuleAgent::GetEventRecConfigurations
  *   - @ref AliHLTModuleAgent::RegisterComponents
  *
  * In order to hook the sample library up to the HLT system on global object
index 402b119db45dbf807e699bf01ba2b39e1003e1fc..02b370d7684f68fef2ade6181e68b19e8f3b6607 100644 (file)
@@ -35,6 +35,7 @@ class AliHLTTPCAgent : public AliHLTModuleAgent {
    * to be registered to the current AliRoot setup by checking the
    * runloader.
    * @param handler      the configuration handler
+   * @param rawReader    AliRawReader instance
    * @param runloader    AliRoot runloader
    * @return neg. error code if failed
    */
@@ -48,6 +49,7 @@ class AliHLTTPCAgent : public AliHLTModuleAgent {
    * described by the last configuration(s) in the chain. 
    * The agent can adapt the configurations to be registered to the current
    * AliRoot setup by checking the runloader.
+   * @param rawReader    AliRawReader instance
    * @param runloader    AliRoot runloader
    * @return number of configurations, neg. error code if failed
    */
index a808ec9e2d890a6bbf1bba328006c265cc62d32e..2125f5bae4eefb5b97bb6f2a39d822f6f798087c 100644 (file)
@@ -16,7 +16,7 @@
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/** @file   AliHLTReconstruction.cxx
+/** @file   AliHLTReconstructor.cxx
     @author Matthias Richter
     @date   
     @brief  Binding class for HLT reconstruction in AliRoot. */
index 44562289bb0d2528b94dee79d7580112521e02b3..8b42b9465d51d9061ea9919dffbe4b90a217682b 100644 (file)
@@ -6,7 +6,7 @@
  * ALICE Experiment at CERN, All rights reserved.                         *
  * See cxx source for full Copyright notice                               */
 
-/** @file   AliHLTSimulation.h
+/** @file   AliHLTReconstructor.h
     @author Matthias Richter
     @date   
     @brief  Binding class for HLT simulation in AliRoot