From c312f3f0b6464df73dbc4f65acaaa5b90438d8bb Mon Sep 17 00:00:00 2001 From: gamez Date: Thu, 25 Jul 2002 21:27:22 +0000 Subject: [PATCH] Variables renamed to avoid floating exceptions --- CRT/AliCRThit.cxx | 46 +++++++++++++++++++++++----------------------- CRT/AliCRThit.h | 18 +++++++++--------- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/CRT/AliCRThit.cxx b/CRT/AliCRThit.cxx index 777d0e97a06..11e1da7695d 100644 --- a/CRT/AliCRThit.cxx +++ b/CRT/AliCRThit.cxx @@ -14,7 +14,7 @@ **************************************************************************/ /* -$Log: +$Log$ */ @@ -30,17 +30,17 @@ AliCRThit::AliCRThit(const AliCRThit & hit) // fnmou = hit.fnmou; - fmtyp = hit.fmtyp; - fxpit = hit.fxpit; - fypit = hit.fypit; - fzpit = hit.fzpit; - fpxug = hit.fpxug; - fpyug = hit.fpyug; - fpzug = hit.fpzug; - flay = hit.flay; - fxver = hit.fxver; - fyver = hit.fyver; - fzver = hit.fzver; + fId = hit.fId; + fX = hit.fX; + fY = hit.fY; + fZ = hit.fZ; + fpxug = hit.fpxug; + fpyug = hit.fpyug; + fpzug = hit.fpzug; + flay = hit.flay; + fxver = hit.fxver; + fyver = hit.fyver; + fzver = hit.fzver; } //______________________________________________________________________________ @@ -52,16 +52,16 @@ AliCRThit::AliCRThit(Int_t shunt, Int_t track, Int_t *vol, // fnmou = hits[0]; - fmtyp = hits[1]; - fxpit = hits[2]; - fypit = hits[3]; - fzpit = hits[4]; - fpxug = hits[5]; - fpyug = hits[6]; - fpzug = hits[7]; - flay = hits[8]; - fxver = hits[9]; - fyver = hits[10]; - fzver = hits[11]; + fId = hits[1]; + fX = hits[2]; + fY = hits[3]; + fZ = hits[4]; + fpxug = hits[5]; + fpyug = hits[6]; + fpzug = hits[7]; + flay = hits[8]; + fxver = hits[9]; + fyver = hits[10]; + fzver = hits[11]; } diff --git a/CRT/AliCRThit.h b/CRT/AliCRThit.h index ae3ce596c47..15f7a3d4b89 100644 --- a/CRT/AliCRThit.h +++ b/CRT/AliCRThit.h @@ -26,11 +26,11 @@ public: virtual ~AliCRThit() {} // getters for AliCRThit object - Float_t Getnmou() const {return fnmou;} - Float_t Getmtyp() const {return fmtyp;} - Float_t Getxpit() const {return fxpit;} - Float_t Getypit() const {return fypit;} - Float_t Getzpit() const {return fzpit;} + Float_t Getnmou() const {return fnmou;} + Float_t GetId() const {return fId;} + Float_t GetX() const {return fX;} + Float_t GetY() const {return fY;} + Float_t GetZ() const {return fZ;} Float_t Getpxug() const {return fpxug;} Float_t Getpyug() const {return fpyug;} Float_t Getpzug() const {return fpzug;} @@ -42,10 +42,10 @@ public: Int_t fVolume; Int_t fCopy; Float_t fnmou; - Float_t fmtyp; - Float_t fxpit; // - Float_t fypit; // - Float_t fzpit; // + Float_t fId; + Float_t fX; // + Float_t fY; // + Float_t fZ; // Float_t fpxug; // Float_t fpyug; // Float_t fpzug; // -- 2.39.3