CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EvtPlane.cc
Go to the documentation of this file.
1 // //
2 // //
3 //
4 // #include "DataFormats/HeavyIonEvent/interface/EvtPlane.h"
5 //
6 // using namespace reco;
7 //
8 // EvtPlane::EvtPlane(double planeA, std::string label)
9 // :
10 // angle_(planeA),
11 // label_(label)
12 // {
13 // // default constructor
14 // }
15 //
16 //
17 // EvtPlane::~EvtPlane()
18 // {
19 // }
20 //
21 //
22 
23 
24 //
25 //
26 
28 
29 using namespace reco;
30 
31 EvtPlane::EvtPlane(double planeA,double sumSin, double sumCos, std::string label)
32  :
33  angle_(planeA),
34  sumSin_(sumSin),
35  sumCos_(sumCos),
36  label_(label)
37 {
38  // default constructor
39 }
40 
41 
43 {
44 }
45 
46 
virtual ~EvtPlane()
Definition: EvtPlane.cc:42
EvtPlane(double planeA=0, double sumSin=0, double sumCos=0, std::string label="")
Definition: EvtPlane.cc:31