]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/tracking-ca/AliHLTTPCCAMCPoint.h
style changes
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCAMCPoint.h
index c2c72763f6afe12c02de1602fa552aeb274d2b71..4862d3547a0f78b552e04cd7ef7d8834f87d2311 100644 (file)
@@ -43,18 +43,18 @@ class AliHLTTPCCAMCPoint
     void SetTrackID( int v )     { fTrackID = v; }
 
     static bool Compare( const AliHLTTPCCAMCPoint &p1, const AliHLTTPCCAMCPoint &p2 ) {
-      if( p1.fTrackID != p2.fTrackID ) return (p1.fTrackID < p2.fTrackID);
-      if( p1.fISlice != p2.fISlice ) return ( p1.fISlice < p2.fISlice );
+      if ( p1.fTrackID != p2.fTrackID ) return ( p1.fTrackID < p2.fTrackID );
+      if ( p1.fISlice != p2.fISlice ) return ( p1.fISlice < p2.fISlice );
       return ( p1.Sx() < p2.Sx() );
     }
 
-  static bool CompareSlice( const AliHLTTPCCAMCPoint &p, int slice ){
-    return ( p.ISlice() < slice );
-  }
+    static bool CompareSlice( const AliHLTTPCCAMCPoint &p, int slice ) {
+      return ( p.ISlice() < slice );
+    }
 
-  static bool CompareX( const AliHLTTPCCAMCPoint &p, float X ){
-    return ( p.Sx() < X );
-  }
+    static bool CompareX( const AliHLTTPCCAMCPoint &p, float X ) {
+      return ( p.Sx() < X );
+    }
 
   protected: