From 9c1d73008c787ba756054025704ba8429f704d48 Mon Sep 17 00:00:00 2001 From: hristov Date: Thu, 21 Dec 2006 10:06:18 +0000 Subject: [PATCH] Using symname as argument to avoid confusion (Raffaele) --- STEER/AliAlignObjAngles.cxx | 4 ++-- STEER/AliAlignObjAngles.h | 4 ++-- STEER/AliAlignObjMatrix.cxx | 8 ++++---- STEER/AliAlignObjMatrix.h | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/STEER/AliAlignObjAngles.cxx b/STEER/AliAlignObjAngles.cxx index 704e8581c27..32a89ac148c 100644 --- a/STEER/AliAlignObjAngles.cxx +++ b/STEER/AliAlignObjAngles.cxx @@ -34,7 +34,7 @@ AliAlignObjAngles::AliAlignObjAngles() : AliAlignObj() } //_____________________________________________________________________________ -AliAlignObjAngles::AliAlignObjAngles(const char* volpath, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *) : AliAlignObj(volpath,volUId) +AliAlignObjAngles::AliAlignObjAngles(const char* symname, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *) : AliAlignObj(symname,volUId) { // standard constructor with 3 translation + 3 rotation parameters // If the user explicitly sets the global variable to kFALSE then the @@ -50,7 +50,7 @@ AliAlignObjAngles::AliAlignObjAngles(const char* volpath, UShort_t volUId, Doubl } //_____________________________________________________________________________ -AliAlignObjAngles::AliAlignObjAngles(const char* volpath, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *) : AliAlignObj(volpath,volUId) +AliAlignObjAngles::AliAlignObjAngles(const char* symname, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *) : AliAlignObj(symname,volUId) { // standard constructor with TGeoMatrix // If the user explicitly sets the global variable to kFALSE then the diff --git a/STEER/AliAlignObjAngles.h b/STEER/AliAlignObjAngles.h index 2ea346048f6..2ee080aa416 100644 --- a/STEER/AliAlignObjAngles.h +++ b/STEER/AliAlignObjAngles.h @@ -19,8 +19,8 @@ class AliAlignObjAngles : public AliAlignObj{ public: AliAlignObjAngles(); - AliAlignObjAngles(const char* volpath, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *); - AliAlignObjAngles(const char* volpath, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *); + AliAlignObjAngles(const char* symname, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *); + AliAlignObjAngles(const char* symname, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *); AliAlignObjAngles(const AliAlignObj& theAlignObj); AliAlignObjAngles& operator= (const AliAlignObj& theAlignObj); virtual ~AliAlignObjAngles(); diff --git a/STEER/AliAlignObjMatrix.cxx b/STEER/AliAlignObjMatrix.cxx index f1052c63757..a9fcd8db1a9 100644 --- a/STEER/AliAlignObjMatrix.cxx +++ b/STEER/AliAlignObjMatrix.cxx @@ -34,8 +34,8 @@ AliAlignObjMatrix::AliAlignObjMatrix() : } //_____________________________________________________________________________ -AliAlignObjMatrix::AliAlignObjMatrix(const char* volpath, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *) : - AliAlignObj(volpath,volUId), +AliAlignObjMatrix::AliAlignObjMatrix(const char* symname, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *) : + AliAlignObj(symname,volUId), fMatrix() { // standard constructor with 3 translation + 3 rotation parameters @@ -53,8 +53,8 @@ AliAlignObjMatrix::AliAlignObjMatrix(const char* volpath, UShort_t volUId, Doubl //_____________________________________________________________________________ -AliAlignObjMatrix::AliAlignObjMatrix(const char* volpath, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *) : - AliAlignObj(volpath,volUId), +AliAlignObjMatrix::AliAlignObjMatrix(const char* symname, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *) : + AliAlignObj(symname,volUId), fMatrix() { // standard constructor with TGeoMatrix diff --git a/STEER/AliAlignObjMatrix.h b/STEER/AliAlignObjMatrix.h index 22a8e422f8f..42fb7ddb3a2 100644 --- a/STEER/AliAlignObjMatrix.h +++ b/STEER/AliAlignObjMatrix.h @@ -15,8 +15,8 @@ class AliAlignObjMatrix : public AliAlignObj { public: AliAlignObjMatrix(); - AliAlignObjMatrix(const char* volpath, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *); - AliAlignObjMatrix(const char* volpath, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *); + AliAlignObjMatrix(const char* symname, UShort_t volUId, Double_t x, Double_t y, Double_t z, Double_t psi, Double_t theta, Double_t phi, Bool_t global) throw (const Char_t *); + AliAlignObjMatrix(const char* symname, UShort_t volUId, TGeoMatrix& m, Bool_t global) throw (const Char_t *); AliAlignObjMatrix(const AliAlignObj& theAlignObj); AliAlignObjMatrix& operator= (const AliAlignObj& theAlignObj); virtual ~AliAlignObjMatrix(); -- 2.43.0