Line data Source code
1 : #ifndef ALI_PDG__H
2 : #define ALI_PDG__H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id$ */
7 :
8 : #include "TObject.h"
9 :
10 : // Class to encapsulate the ALICE updates to TDatabasePDG.h
11 : // Can be used by TGeant3 and TGeant4
12 : // Comments to: andreas.morsch@cern.ch
13 :
14 0 : class AliPDG : public TObject {
15 : public:
16 : static void AddParticlesToPdgDataBase();
17 : private:
18 176 : ClassDef(AliPDG,1) // PDG database related information
19 : };
20 :
21 :
22 : #endif //ALI_PDG__H
|