]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/DATENotifier.cxx
Detectors can have more than one AMANDA server. SHUTTLE queries the servers sequentially,
[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 }