]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliGenEventHeader.cxx
Mostly minor style modifications to be ready for cloning with EMCAL
[u/mrichter/AliRoot.git] / STEER / AliGenEventHeader.cxx
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 /*
17 $Log$
18 Revision 1.2  2001/09/25 11:28:48  morsch
19 Possibility to store and retrieve primary vertex position added.
20
21 Revision 1.1  2001/05/16 14:57:22  alibrary
22 New files for folders and Stack
23
24 Revision 1.2  2000/12/21 16:24:06  morsch
25 Coding convention clean-up
26
27 Revision 1.1  2000/06/15 15:47:48  morsch
28 Proposal for an event header class for generated events.
29
30 */
31
32 // Event header base class for generator. 
33 // Stores as a minimum the date, run number, event number,
34 // number of particles produced  
35 // and the impact parameter.
36 // 
37 // Author: andreas.morsch@cern.ch
38
39 #include "AliGenEventHeader.h"
40 ClassImp(AliGenEventHeader)
41
42
43 //_____________________________________________________________________________
44 AliGenEventHeader::AliGenEventHeader()
45 {
46 // Constructor
47     fNProduced      = -1;      
48     fImpactParameter= -1.;
49     fVertex.Set(3);
50 }
51
52
53 AliGenEventHeader::AliGenEventHeader(const char * name)
54     :TNamed(name, "Event Header")
55 {
56 // Constructor
57     fNProduced      = -1;      
58     fImpactParameter= -1.;
59     fVertex.Set(3);
60 }
61
62 void AliGenEventHeader::SetPrimaryVertex(const TArrayF &o)
63 {
64     //
65     // Set the primary vertex for the event
66     //
67     fVertex[0]=o.At(0);
68     fVertex[1]=o.At(1);
69     fVertex[2]=o.At(2);
70 }
71
72 void  AliGenEventHeader::PrimaryVertex(TArrayF &o) const
73 {
74     //
75     // Return the primary vertex for the event
76     //
77     o[0] = fVertex.At(0);
78     o[1] = fVertex.At(1);
79     o[2] = fVertex.At(2);    
80 }
81