]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/DATENotifier.cxx
Grid Storage at the end of preprocessing. Added virtual method to disable DCS query...
[u/mrichter/AliRoot.git] / SHUTTLE / DATENotifier.cxx
CommitLineData
d477ad88 1#include "DATENotifier.h"
2
3#include "AliLog.h"
4
5#include "AliShuttleTrigger.h"
6
4f0ab988 7//______________________________________________________________________
8void DATENotifier::infoHandler()
9{
10// Info handler
11
d477ad88 12 AliInfoGeneral("DATENotifier::infoHandler()",
13 "DATE notification received ...");
14 fTrigger->Notify();
15}
16
4f0ab988 17//______________________________________________________________________
18void DATENotifier::errorHandler(int severity, int code, char *msg)
19{
20// Error handler
d477ad88 21
22 AliInfoGeneral("DATENotifier::errorHandler()",
23 Form("DIM Error: severity<%d>, code<%d> , message<%s>",
24 severity, code, msg));
25}
4f0ab988 26
27//______________________________________________________________________
28DATENotifier::DATENotifier(const DATENotifier& /*other*/):
29DimInfo(), fTrigger(0) {
30// copy constructor (not implemented)
31
32}