]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Const multidimentional arrays cause problems in the CINT dictionary on HP, const...
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 4 Sep 2001 14:54:31 +0000 (14:54 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 4 Sep 2001 14:54:31 +0000 (14:54 +0000)
ITS/AliITSgeomMatrix.cxx
ITS/AliITSgeomMatrix.h

index 0056a34dd7700fbb22ce054b70a86076063bd526..cccb3af678d1a2ac7aa5b8b3d1dfe454b80591b7 100644 (file)
 
 /*
 $Log$
+Revision 1.10  2001/08/24 21:06:37  nilsen
+Added more documentation, fixed up some coding violations, and some
+forward declorations.
+
 Revision 1.9  2001/03/23 15:21:56  nilsen
 Added Cylinderical Coordinates for use with Tracking. Fixed a but in the
 Streamer, It was not setting a value for frot[3] as it should when reading.
@@ -415,7 +419,7 @@ void AliITSgeomMatrix::LtoGMomentum(const Double_t l[3],Double_t g[3]){
        return;
 }
 //----------------------------------------------------------------------
-void AliITSgeomMatrix::GtoLPositionError(const Double_t g[3][3],
+void AliITSgeomMatrix::GtoLPositionError(      Double_t g[3][3],
                                                Double_t l[3][3]){
 ////////////////////////////////////////////////////////////////////////
 // Given an Uncertainty matrix in Global coordinates it is rotated so that 
@@ -430,7 +434,7 @@ void AliITSgeomMatrix::GtoLPositionError(const Double_t g[3][3],
        return;
 }
 //----------------------------------------------------------------------
-void AliITSgeomMatrix::LtoGPositionError(const Double_t l[3][3],
+void AliITSgeomMatrix::LtoGPositionError(      Double_t l[3][3],
                                                Double_t g[3][3]){
 ////////////////////////////////////////////////////////////////////////
 // Given an Uncertainty matrix in Local coordinates it is rotated so that 
@@ -570,7 +574,7 @@ void AliITSgeomMatrix::LtoGMomentumTracking(const Double_t l[3],
        return;
 }
 //----------------------------------------------------------------------
-void AliITSgeomMatrix::GtoLPositionErrorTracking(const Double_t g[3][3],
+void AliITSgeomMatrix::GtoLPositionErrorTracking(     Double_t g[3][3],
                                                 Double_t l[3][3]){
 ////////////////////////////////////////////////////////////////////////
 // A slightly different coordinate system is used when tracking.
@@ -600,7 +604,7 @@ void AliITSgeomMatrix::GtoLPositionErrorTracking(const Double_t g[3][3],
        return;
 }
 //----------------------------------------------------------------------
-void AliITSgeomMatrix::LtoGPositionErrorTracking(const Double_t l[3][3],
+void AliITSgeomMatrix::LtoGPositionErrorTracking( Double_t l[3][3],
                                                 Double_t g[3][3]){
 ////////////////////////////////////////////////////////////////////////
 // A slightly different coordinate system is used when tracking.
index 29dff4d92674659949a478e40d739ec0d28ba406..a5ca9e8785b45a0d1288ccc976e4e061bdc4635f 100644 (file)
@@ -104,11 +104,11 @@ class AliITSgeomMatrix : public TObject {
        // given a position error matrix in ALICE Cartesian global
        // coordinates [cm] returns a position error matrix in detector/
        // module local Cartesian local coordinates [cm]
-       void GtoLPositionError(const Double_t g[3][3],Double_t l[3][3]);
+       void GtoLPositionError(Double_t g[3][3],Double_t l[3][3]);
        // given a position error matrix in detector/module Cartesian local
        // coordinates [cm] returns a position error matrix in ALICE
        // Cartesian global coordinates [cm]
-       void LtoGPositionError(const Double_t l[3][3],Double_t g[3][3]);
+       void LtoGPositionError(Double_t l[3][3],Double_t g[3][3]);
        // Tracking Related Routines
        void GtoLPositionTracking(const Double_t g[3],Double_t l[3]);
        // Given a position in Cartesian Tracking global coordinates [cm]
@@ -125,12 +125,12 @@ class AliITSgeomMatrix : public TObject {
        // given a position error matrix in Tracking Cartesian global
        // coordinates [cm] returns a position error matrix in detector/
        // module local Cartesian local coordinates [cm]
-       void GtoLPositionErrorTracking(const Double_t g[3][3],
+       void GtoLPositionErrorTracking(Double_t g[3][3],
                                       Double_t l[3][3]);
        // given a position error matrix in detector/module Cartesian local
        // coordinates [cm] returns a position error matrix in Tracking
        // Cartesian global coordinates [cm]
-       void LtoGPositionErrorTracking(const Double_t l[3][3],
+       void LtoGPositionErrorTracking(Double_t l[3][3],
                                       Double_t g[3][3]);
        // Computes the distance squared [cm^2] between a point t[3] and
        // this module/detector