ATLAS Offline Software
Loading...
Searching...
No Matches
P4EEtaPhiMFloat_p2.h
Go to the documentation of this file.
1
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7// P4EEtaPhiMFloat_p2.h
8// Header file for class P4EEtaPhiMFloat_p2
9// Author: I. Vukotic <ivukotic@cern.ch>
11#ifndef EVENTCOMMONTPCNV_P4EETAPHIMFloat_P2_H
12#define EVENTCOMMONTPCNV_P4EETAPHIMFloat_P2_H
13
14// STL includes
15
16
17// Gaudi includes
18
19// Forward declaration
21
23{
24
26 // Public methods:
28 public:
29
32 P4EEtaPhiMFloat_p2( const float ene = 0., const float eta = 0.,
33 const float phi = 0., const float mass = 0. );
34
35 float m_e;
36 float m_eta;
37 float m_phi;
38 float m_m;
39};
40
42// Inline methods:
44inline P4EEtaPhiMFloat_p2::P4EEtaPhiMFloat_p2( const float ene, const float eta,
45 const float phi, const float mass ) :
46 m_e ( ene ),
47 m_eta( eta ),
48 m_phi( phi ),
49 m_m ( mass )
50{}
51
52#endif //> EVENTCOMMONTPCNV_P4EETAPHIMFloat_P2_H
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
P4EEtaPhiMFloat_p2(const float ene=0., const float eta=0., const float phi=0., const float mass=0.)
Constructor: with 4 doubles.