]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - SHUTTLE/DATENotifier.cxx
effc++ corrections (alberto)
[u/mrichter/AliRoot.git] / SHUTTLE / DATENotifier.cxx
index f9a2533484c23e74f2d8053a10aeecdf2cafd784..cce88235d9f317b23cd30604d254615810ec41c2 100644 (file)
@@ -4,15 +4,29 @@
 
 #include "AliShuttleTrigger.h"
 
-void DATENotifier::infoHandler() {
+//______________________________________________________________________
+void DATENotifier::infoHandler()
+{
+// Info handler
+
        AliInfoGeneral("DATENotifier::infoHandler()",
                        "DATE notification received ...");
        fTrigger->Notify();
 }
 
-void DATENotifier::errorHandler(int severity, int code, char *msg) {
+//______________________________________________________________________
+void DATENotifier::errorHandler(int severity, int code, char *msg)
+{
+// Error handler
 
        AliInfoGeneral("DATENotifier::errorHandler()",
                Form("DIM Error: severity<%d>, code<%d> , message<%s>",
                severity, code, msg));
 }
+
+//______________________________________________________________________
+DATENotifier::DATENotifier(const DATENotifier& /*other*/):
+DimInfo(), fTrigger(0) {
+// copy constructor (not implemented)
+
+}