X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ITS%2FAliITSFDigitizer.cxx;h=e67e5ce1da3a6209ad3cdbc49dbb656eb6098295;hb=aafecd8bbd1e13379dcd25cfba57e8b30c006765;hp=47d376cf6208cc9444d703effd0875bc2d049533;hpb=7d62fb642e8e534a0745ecf2706ee54afa6ffa5c;p=u%2Fmrichter%2FAliRoot.git diff --git a/ITS/AliITSFDigitizer.cxx b/ITS/AliITSFDigitizer.cxx index 47d376cf620..e67e5ce1da3 100644 --- a/ITS/AliITSFDigitizer.cxx +++ b/ITS/AliITSFDigitizer.cxx @@ -36,26 +36,26 @@ ClassImp(AliITSFDigitizer) //______________________________________________________________________ -AliITSFDigitizer::AliITSFDigitizer() : AliDigitizer(){ +AliITSFDigitizer::AliITSFDigitizer() : AliDigitizer(), +fITS(0), +fInit(kFALSE){ // // Default constructor. // - fITS = 0; - fInit = kFALSE; } //______________________________________________________________________ -AliITSFDigitizer::AliITSFDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr){ +AliITSFDigitizer::AliITSFDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr), +fITS(0), +fInit(kFALSE){ // // Standard constructor. // - fITS = 0; - fInit = kFALSE; } //______________________________________________________________________ -AliITSFDigitizer::AliITSFDigitizer(const AliITSFDigitizer &/*rec*/):AliDigitizer(/*rec*/){ +AliITSFDigitizer::AliITSFDigitizer(const AliITSFDigitizer &rec):AliDigitizer(rec), +fITS(rec.fITS), +fInit(rec.fInit){ // Copy constructor. - - Error("Copy constructor","Copy constructor not allowed"); } //______________________________________________________________________