]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGenEposEventHeader.cxx
fixes from Laurent for the MC branch in the AOD filters
[u/mrichter/AliRoot.git] / STEER / AliGenEposEventHeader.cxx
CommitLineData
182e8d06 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
9ef1c2d9 18/*
19 * AliGenEposEventHeader.h
20 *
21 * Header for EPOS generated event.
22 *
23 * Author: Piotr Ostrowski
24 */
25
26#include "AliGenEposEventHeader.h"
879c2333 27
9ef1c2d9 28ClassImp(AliGenEposEventHeader)
29
182e8d06 30
9ef1c2d9 31AliGenEposEventHeader::AliGenEposEventHeader(const char* name):
879c2333 32 AliGenEventHeader(name),
33 fBimevt(0),
34 fPhievt(0),
35 fKolevt(0),
36 fKoievt(0),
37 fPmxevt(0),
38 fEgyevt(0),
39 fNpjevt(0),
40 fNtgevt(0),
41 fNpnevt(0),
42 fNppevt(0),
43 fNtnevt(0),
44 fNtpevt(0),
45 fJpnevt(0),
46 fJppevt(0),
47 fJtnevt(0),
48 fJtpevt(0),
49 fXbjevt(0),
50 fQsqevt(0),
51 fNglevt(0),
52 fZppevt(0),
53 fZptevt(0)
54{
182e8d06 55// Constructor
879c2333 56}
57
58AliGenEposEventHeader::AliGenEposEventHeader() : fBimevt(0),
59 fPhievt(0),
60 fKolevt(0),
61 fKoievt(0),
62 fPmxevt(0),
63 fEgyevt(0),
64 fNpjevt(0),
65 fNtgevt(0),
66 fNpnevt(0),
67 fNppevt(0),
68 fNtnevt(0),
69 fNtpevt(0),
70 fJpnevt(0),
71 fJppevt(0),
72 fJtnevt(0),
73 fJtpevt(0),
74 fXbjevt(0),
75 fQsqevt(0),
76 fNglevt(0),
77 fZppevt(0),
78 fZptevt(0)
9ef1c2d9 79{
182e8d06 80// Default constructor
9ef1c2d9 81}
82