From 7980897bdacbdda9375e06d6f9f59bcdbd0cf78d Mon Sep 17 00:00:00 2001 From: zampolli Date: Fri, 9 Oct 2009 13:02:55 +0000 Subject: [PATCH] - copy constructor and assignment operator implemented. - printout added for ProcessTOFTriggerData - specifying it is a fake one for the time being. --- TRIGGER/AliTRIPreprocessor.cxx | 1 + TRIGGER/AliTRIPreprocessor.h | 2 ++ 2 files changed, 3 insertions(+) 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; -- 2.43.0