// --- ROOT system ---
//#include "TClonesArray.h"
-#include <assert.h>
#include "TRandom.h"
class TVector3 ;
AliPHOSvFast() ;
AliPHOSvFast(const char *name, const char *title="") ;
AliPHOSvFast(const AliPHOSvFast & fast) : AliPHOS(fast) {
- // cpy ctor: no implementation yet
- // requested by the Coding Convention
- assert(0==1) ;
+ Fatal("cpy ctor", "not implemented") ;
}
virtual ~AliPHOSvFast(void) ;
}
AliPHOSvFast & operator = (const AliPHOSvFast & ) {
- // assignement operator requested by coding convention but not needed
- assert(0==1) ;
- return *this ;
+ Fatal("operator =", "not implemented") ; return *this ;
}
private: