]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
corrections from previous commit
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Jan 2007 15:07:35 +0000 (15:07 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Jan 2007 15:07:35 +0000 (15:07 +0000)
HLT/BASE/AliHLTComponent.h
HLT/BASE/AliHLTDataSource.h
HLT/BASE/AliHLTDataTypes.h

index 71422e6a729f18f4a6c9e00c035cf2ffeb54a84b..8b2316cfd386afea1046fd24ecaff8ee4eff5ad9 100644 (file)
@@ -220,7 +220,7 @@ class AliHLTComponent : public AliHLTLogging {
    * are copied, the rest is fille with 0's.
    * Please note that the fID and fOrigin members are not strings, just arrays of
    * chars of size @ref kAliHLTComponentDataTypefIDsize and
-   * @kAliHLTComponentDataTypefOriginSize respectively and not necessarily with
+   * @ref kAliHLTComponentDataTypefOriginSize respectively and not necessarily with
    * a terminating zero.
    * @param id      ID string
    * @param origin  Origin string
index 54ce3b409c73d87883e9bdfcd8c814595d60c89f..723c503766800ca4c981351e49cb11160ab2a723 100644 (file)
@@ -63,7 +63,7 @@ class AliHLTDataSource : public AliHLTComponent {
    * Default implementation for all data sources.
    * There are no input data types.
    */
-  void AliHLTDataSource::GetInputDataTypes( vector<AliHLTComponentDataType>& list);
+  void GetInputDataTypes( vector<AliHLTComponentDataType>& list);
 
  private:
   /**
index 32fa980daa389b7598a79b51d4d6bd8f263d5ecc..b865828419bf7eefaaff22e147e3cd3e00a0f35b 100644 (file)
@@ -101,10 +101,10 @@ extern "C" {
 
 inline bool operator==( const AliHLTComponentDataType& dt1, const AliHLTComponentDataType& dt2 )
     {
-    for ( unsigned i = 0; i < kAliHLTComponentDataTypefIDsize; i++ )
+    for ( int i = 0; i < kAliHLTComponentDataTypefIDsize; i++ )
        if ( dt1.fID[i] != dt2.fID[i] )
            return false;
-    for ( unsigned i = 0; i < kAliHLTComponentDataTypefOriginSize; i++ )
+    for ( int i = 0; i < kAliHLTComponentDataTypefOriginSize; i++ )
        if ( dt1.fOrigin[i] != dt2.fOrigin[i] )
            return false;
     return true;
@@ -112,10 +112,10 @@ inline bool operator==( const AliHLTComponentDataType& dt1, const AliHLTComponen
 
 inline bool operator!=( const AliHLTComponentDataType& dt1, const AliHLTComponentDataType& dt2 )
     {
-    for ( unsigned i = 0; i < kAliHLTComponentDataTypefIDsize; i++ )
+    for ( int i = 0; i < kAliHLTComponentDataTypefIDsize; i++ )
        if ( dt1.fID[i] != dt2.fID[i] )
            return true;
-    for ( unsigned i = 0; i < kAliHLTComponentDataTypefOriginSize; i++ )
+    for ( int i = 0; i < kAliHLTComponentDataTypefOriginSize; i++ )
        if ( dt1.fOrigin[i] != dt2.fOrigin[i] )
            return true;
     return false;