]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG0/AliPWG0depHelper.h
New functions (Marian)
[u/mrichter/AliRoot.git] / PWG0 / AliPWG0depHelper.h
CommitLineData
4c351225 1/* $Id$ */
2
3#ifndef ALIPWG0DEPHELPER_H
4#define ALIPWG0DEPHELPER_H
5
6#include <TObject.h>
7
8// static helper functions that depend on more than ESD
9
10class AliHeader;
11
12class AliPWG0depHelper : public TObject
13{
14 public:
15 static const Int_t GetPythiaEventProcessType(AliHeader* aHeader, Bool_t adebug = kFALSE);
16
17 protected:
18 ClassDef(AliPWG0depHelper, 0)
19
20 private:
21 AliPWG0depHelper(const AliPWG0depHelper&);
22 AliPWG0depHelper& operator=(const AliPWG0depHelper&);
23};
24
25#endif
26