]> git.uio.no Git - u/mrichter/AliRoot.git/blob - UNICOR/AliDAnalGlobal.h
8518d0c1d5cedab64c670a617582a8a6f0096fd6
[u/mrichter/AliRoot.git] / UNICOR / AliDAnalGlobal.h
1 // Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2007
2
3 //=============================================================================
4 // event global variable analyzer
5 //=============================================================================
6
7 #ifndef ALIDANALGLOBAL_H
8 #define ALIDANALGLOBAL_H
9
10 #include "AliDAnal.h"
11 class AliDEvent;
12
13 //=============================================================================
14 class AliDAnalGlobal : public AliDAnal {
15    
16  public:
17   AliDAnalGlobal(Char_t *nam="global"); // constructor
18   virtual ~AliDAnalGlobal(){}           // destructor
19   void Process(AliDEvent *ev);          // fill histograms
20
21   ClassDef(AliDAnalGlobal,1)
22 };
23 //=============================================================================
24 #endif