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 // // $Id: EvtPlane.cc,v 1.4 2009/09/08 12:33:12 edwenger Exp $
3 // //
4 //
5 // #include "DataFormats/HeavyIonEvent/interface/EvtPlane.h"
6 //
7 // using namespace reco;
8 //
9 // EvtPlane::EvtPlane(double planeA, std::string label)
10 // :
11 // angle_(planeA),
12 // label_(label)
13 // {
14 // // default constructor
15 // }
16 //
17 //
18 // EvtPlane::~EvtPlane()
19 // {
20 // }
21 //
22 //
23 
24 
25 //
26 // $Id: EvtPlane.cc,v 1.4 2009/09/08 12:33:12 edwenger Exp $
27 //
28 
30 
31 using namespace reco;
32 
33 EvtPlane::EvtPlane(double planeA,double sumSin, double sumCos, std::string label)
34  :
35  angle_(planeA),
36  sumSin_(sumSin),
37  sumCos_(sumCos),
38  label_(label)
39 {
40  // default constructor
41 }
42 
43 
45 {
46 }
47 
48 
virtual ~EvtPlane()
Definition: EvtPlane.cc:44
EvtPlane(double planeA=0, double sumSin=0, double sumCos=0, std::string label="")
Definition: EvtPlane.cc:33