From: zampolli Date: Fri, 9 Oct 2009 13:02:55 +0000 (+0000) Subject: - copy constructor and assignment operator implemented. X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=7980897bdacbdda9375e06d6f9f59bcdbd0cf78d - copy constructor and assignment operator implemented. - printout added for ProcessTOFTriggerData - specifying it is a fake one for the time being. --- diff --git a/TRIGGER/AliTRIPreprocessor.cxx b/TRIGGER/AliTRIPreprocessor.cxx index 8a6b65b397a..8e31a00019a 100644 --- a/TRIGGER/AliTRIPreprocessor.cxx +++ b/TRIGGER/AliTRIPreprocessor.cxx @@ -246,6 +246,7 @@ Short_t AliTRIPreprocessor::ProcessTOFTriggerData() // Log("************** Processing TOF Trigger data... **************"); + Log("************** Fake function **************"); Log("************************* ...done.*************************"); return 0; } diff --git a/TRIGGER/AliTRIPreprocessor.h b/TRIGGER/AliTRIPreprocessor.h index 6ca52b438b8..a263f1c144c 100644 --- a/TRIGGER/AliTRIPreprocessor.h +++ b/TRIGGER/AliTRIPreprocessor.h @@ -30,6 +30,8 @@ class AliTRIPreprocessor : public AliPreprocessor private: + AliTRIPreprocessor(const AliTRIPreprocessor & proc); // copy constructor + AliTRIPreprocessor& operator=(const AliTRIPreprocessor & proc); static const char* fgkDetectorsMapName[kNDetectorsMap]; // names of detectors/systems in the DETECTORS_MAP in /date/db/detCodes.h AliShuttleInterface *fShuttle;