X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FAliPHOSDebug.h;h=3021dc5e9e3606e8e5ec04dad750b100e369f3b5;hb=78da634f7fed8900c75f4b49a6d20f7fec104633;hp=6e47f971e191d9800c235ddb75c3022633c6f1e7;hpb=1b1d7219429736b2c8291888abdc7f51488b0de5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/AliPHOSDebug.h b/PHOS/AliPHOSDebug.h index 6e47f971e19..3021dc5e9e3 100644 --- a/PHOS/AliPHOSDebug.h +++ b/PHOS/AliPHOSDebug.h @@ -5,7 +5,6 @@ //_________________________________________________________________________ // Implementation version v1 of PHOS Manager class -// Layout EMC + PPSD has name GPS2 // Layout EMC + CPV has name IHEP //*-- //*-- Author: Yves Schutz (SUBATECH) @@ -18,7 +17,7 @@ class TFile; // --- AliRoot header files --- #include "AliPHOSv0.h" #include "AliPHOSGeometry.h" -#include "AliPHOSReconstructioner.h" +#include "AliPHOSReconstructor.h" #include "AliPHOSTrackSegmentMaker.h" #include "AliPHOSPID.h" #include "AliPHOSCPVDigit.h" @@ -29,11 +28,11 @@ public: AliPHOSv1(void) ; AliPHOSv1(const char *name, const char *title="") ; - AliPHOSv1(AliPHOSReconstructioner * Reconstructioner, const char *name, const char *title="") ; + AliPHOSv1(AliPHOSReconstructor * Reconstructioner, const char *name, const char *title="") ; AliPHOSv1(const AliPHOSv1 & phos) { // cpy ctor: no implementation yet // requested by the Coding Convention - Fatal("cpy ctor", "not implemented") ; + assert(0==1) ; } virtual ~AliPHOSv1(void) ; @@ -42,7 +41,7 @@ public: Int_t Digitize(Float_t Energy){ return (Int_t ) (fDigitizeA + Energy*fDigitizeB); } virtual void Hits2SDigits() ; virtual void MakeBranch(Option_t* opt, char *file=0 ) ; - void Reconstruction(AliPHOSReconstructioner * Reconstructioner) ; + void Reconstruction(AliPHOSReconstructor * Reconstructioner) ; void ResetClusters(){} ; virtual void SDigits2Digits() ; virtual Int_t IsVersion(void) const { @@ -51,7 +50,7 @@ public: } virtual void ResetReconstruction() ; // Reset reconstructed objects - void SetReconstructioner(AliPHOSReconstructioner& Reconstructioner) { + void SetReconstructioner(AliPHOSReconstructor& Reconstructioner) { // sets the reconstructionner object to be used fReconstructioner = &Reconstructioner ; } @@ -67,7 +66,7 @@ public: AliPHOSv1 & operator = (const AliPHOSv1 & rvalue) { // assignement operator requested by coding convention but not needed - Fatal("operator =", "not implemented") ; return *this ; + assert(0==1) ; return *this ; } @@ -84,7 +83,7 @@ protected: Float_t fDigitizeA ; //Parameters of the Float_t fDigitizeB ; //digitization Int_t fnSdigits ; - AliPHOSReconstructioner * fReconstructioner ; // Clusterization and subtracking procedures + AliPHOSReconstructor * fReconstructioner ; // Clusterization and subtracking procedures AliPHOSTrackSegmentMaker * fTrackSegmentMaker ; // Reconstructioner of the PHOS track segment: 2 x PPSD + 1 x EMC ClassDef(AliPHOSv1,1) // Implementation of PHOS manager class for layout EMC+PPSD