]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/DATENotifier.cxx
Run type field added in SHUTTLE framework. Run type is read from "run type" logbook...
[u/mrichter/AliRoot.git] / SHUTTLE / DATENotifier.cxx
1 #include "DATENotifier.h"
2
3 #include "AliLog.h"
4
5 #include "AliShuttleTrigger.h"
6
7 //______________________________________________________________________
8 void DATENotifier::infoHandler()
9 {
10 // Info handler
11
12         AliInfoGeneral("DATENotifier::infoHandler()",
13                         "DATE notification received ...");
14         fTrigger->Notify();
15 }
16
17 //______________________________________________________________________
18 void DATENotifier::errorHandler(int severity, int code, char *msg)
19 {
20 // Error handler
21
22         AliInfoGeneral("DATENotifier::errorHandler()",
23                 Form("DIM Error: severity<%d>, code<%d> , message<%s>",
24                 severity, code, msg));
25 }
26
27 //______________________________________________________________________
28 DATENotifier::DATENotifier(const DATENotifier& /*other*/):
29 DimInfo(), fTrigger(0) {
30 // copy constructor (not implemented)
31
32 }