Skip to content
Snippets Groups Projects
Commit 9cee0aec authored by schutz's avatar schutz
Browse files

default ctor and dtor added to AliPHOSEmcRecPoint
parent 7e2055ed
No related branches found
No related tags found
No related merge requests found
......@@ -50,11 +50,11 @@ AliPHOSEmcRecPoint::AliPHOSEmcRecPoint(Float_t W0, Float_t LocMaxCut)
fLocPos.SetX(1000000.) ; //Local position should be evaluated
}
// //____________________________________________________________________________
// AliPHOSEmcRecPoint::~AliPHOSEmcRecPoint()
// {
// // dtor
// }
//____________________________________________________________________________
AliPHOSEmcRecPoint::~AliPHOSEmcRecPoint()
{
// dtor
}
//____________________________________________________________________________
void AliPHOSEmcRecPoint::AddDigit(AliDigitNew & digit, Float_t Energy)
......
......@@ -26,9 +26,9 @@ class AliPHOSEmcRecPoint : public AliPHOSRecPoint {
public:
AliPHOSEmcRecPoint() ;
AliPHOSEmcRecPoint(){} ;
AliPHOSEmcRecPoint(Float_t W0, Float_t LocMaxCut) ;
// virtual ~AliPHOSEmcRecPoint() ;
virtual ~AliPHOSEmcRecPoint() ;
void AddDigit(AliDigitNew & digit, Float_t Energy) ; // add a digit to the digits list
Int_t Compare(TObject * obj) ; // method for sorting
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment