]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RALICE/AliBoost.h
Coding Convention Violation correction
[u/mrichter/AliRoot.git] / RALICE / AliBoost.h
index d7e0484392a02731c86dbbba9b891026851b011a..929050975869076e8733f06764849906e2dd0121 100644 (file)
@@ -5,7 +5,6 @@
 
 // $Id$
 
-#include <iostream.h>
 #include <math.h>
  
 #include "TObject.h"
@@ -16,13 +15,14 @@ class AliBoost : public TObject
 {
  public:
   AliBoost();                             // Default constructor
-  ~AliBoost();                            // Default destructor
-  void SetBeta(Ali3Vector b);             // Set boost parameters by beta 3-vector
+  virtual ~AliBoost();                    // Default destructor
+  AliBoost(AliBoost& b);                  // Copy constructor
+  void SetBeta(Ali3Vector& b);            // Set boost parameters by beta 3-vector
   void Set4Momentum(Ali4Vector& p);       // Set boost parameters by 4-momentum
   Ali3Vector GetBetaVector();             // Provide the beta 3-vector
   Double_t GetBeta();                     // Provide norm of beta 3-vector
   Double_t GetGamma();                    // Provide gamma value
-  void Info(TString f="car");             // Print boost parameter info in coord. frame f
+  void Data(TString f="car");             // Print boost parameter info in coord. frame f
   Ali4Vector Boost(Ali4Vector& v);        // Perform Lorentz boost on 4-vector v
   Ali4Vector Inverse(Ali4Vector& v);      // Perform inverse Lorentz boost on 4-vector v
   Double_t GetResultError();              // Provide error on scalar result
@@ -33,6 +33,6 @@ class AliBoost : public TObject
   Double_t fDgamma;  // Error on the gamma value
   Double_t fDresult; // Error on scalar result
  
- ClassDef(AliBoost,1) // Perform various Lorentz transformations.
+ ClassDef(AliBoost,3) // Perform various Lorentz transformations.
 };
 #endif