]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/MONITORzmq/AliDIMListenerThread.h
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / MONITOR / MONITORzmq / AliDIMListenerThread.h
1 #ifndef __AliDIMListenerThread__
2 #define __AliDIMListenerThread__
3
4 #include "AliDimIntNotifier.h"
5
6 class AliDimIntNotifier;
7
8 class AliDIMListenerThread
9 {
10 public:
11     AliDIMListenerThread();
12     ~AliDIMListenerThread();
13     
14     void StartOfRun(int run);
15     void EndOfRun(int run);
16     
17 private:
18     void InitDIMListeners();
19     
20     AliDimIntNotifier *fDimSORListener;//[5]; //now listening just in PHYSICS_1
21     AliDimIntNotifier *fDimEORListener;//[5];
22
23     std::string fOnlineReconstructionHostname;
24     std::string fOnlineReconstructionUsername;
25 };
26
27 #endif