Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Author: The ALICE Off-line Project. *
5 : * Contributors are mentioned in the code where appropriate. *
6 : * *
7 : * Permission to use, copy, modify and distribute this software and its *
8 : * documentation strictly for non-commercial purposes is hereby granted *
9 : * without fee, provided that the above copyright notice appears in all *
10 : * copies and that both the copyright notice and this permission notice *
11 : * appear in the supporting documentation. The authors make no claims *
12 : * about the suitability of this software for any purpose. It is *
13 : * provided "as is" without express or implied warranty. *
14 : **************************************************************************/
15 :
16 : /* $Id$ */
17 :
18 : /*
19 : * AliGenEposEventHeader.h
20 : *
21 : * Header for EPOS generated event.
22 : *
23 : * Author: Piotr Ostrowski
24 : */
25 :
26 : #include "AliGenEposEventHeader.h"
27 :
28 176 : ClassImp(AliGenEposEventHeader)
29 :
30 :
31 0 : AliGenEposEventHeader::AliGenEposEventHeader(const char* name):
32 0 : AliGenEventHeader(name),
33 0 : fBimevt(0),
34 0 : fPhievt(0),
35 0 : fKolevt(0),
36 0 : fKoievt(0),
37 0 : fPmxevt(0),
38 0 : fEgyevt(0),
39 0 : fNpjevt(0),
40 0 : fNtgevt(0),
41 0 : fNpnevt(0),
42 0 : fNppevt(0),
43 0 : fNtnevt(0),
44 0 : fNtpevt(0),
45 0 : fJpnevt(0),
46 0 : fJppevt(0),
47 0 : fJtnevt(0),
48 0 : fJtpevt(0),
49 0 : fXbjevt(0),
50 0 : fQsqevt(0),
51 0 : fNglevt(0),
52 0 : fZppevt(0),
53 0 : fZptevt(0)
54 0 : {
55 : // Constructor
56 0 : }
57 :
58 0 : AliGenEposEventHeader::AliGenEposEventHeader() : fBimevt(0),
59 0 : fPhievt(0),
60 0 : fKolevt(0),
61 0 : fKoievt(0),
62 0 : fPmxevt(0),
63 0 : fEgyevt(0),
64 0 : fNpjevt(0),
65 0 : fNtgevt(0),
66 0 : fNpnevt(0),
67 0 : fNppevt(0),
68 0 : fNtnevt(0),
69 0 : fNtpevt(0),
70 0 : fJpnevt(0),
71 0 : fJppevt(0),
72 0 : fJtnevt(0),
73 0 : fJtpevt(0),
74 0 : fXbjevt(0),
75 0 : fQsqevt(0),
76 0 : fNglevt(0),
77 0 : fZppevt(0),
78 0 : fZptevt(0)
79 0 : {
80 : // Default constructor
81 0 : }
82 :
|