CMS 3D CMS Logo

PhiWedge.cc
Go to the documentation of this file.
2 
3 /*
4  [class]: PhiWedge
5  [authors]: R. Remington, The University of Florida
6  [description]: See PhiWedge.h
7  [date]: October 15, 2009
8 */
9 
10 using namespace reco;
11 
13  energy_ = 0.;
14  iphi_ = 0;
15  constituents_ = 0;
20  min_time_ = 0.;
21  max_time_ = 0.;
23 }
24 
25 PhiWedge::PhiWedge(float E, int iphi, int constituents) {
26  energy_ = E;
27  iphi_ = iphi;
28  constituents_ = constituents;
29  min_time_ = 0.;
30  max_time_ = 0.;
36 }
37 
38 PhiWedge::PhiWedge(float E, int iphi, int constituents, float min_time, float max_time) {
39  energy_ = E;
40  iphi_ = iphi;
41  min_time_ = min_time;
42  max_time_ = max_time;
43  constituents_ = constituents;
49 }
50 
52  energy_ = wedge.Energy();
53  iphi_ = wedge.iPhi();
54  min_time_ = wedge.MinTime();
55  max_time_ = wedge.MaxTime();
62 }
reco::PhiWedge::OverlappingCSCRecHits_
int OverlappingCSCRecHits_
Definition: PhiWedge.h:80
reco::PhiWedge::PlusZOriginConfidence
float PlusZOriginConfidence() const
Definition: PhiWedge.h:51
reco::PhiWedge::OverlappingCSCSegments_
int OverlappingCSCSegments_
Definition: PhiWedge.h:79
reco::PhiWedge::constituents_
int constituents_
Definition: PhiWedge.h:74
reco::PhiWedge::iphi_
int iphi_
Definition: PhiWedge.h:73
reco::PhiWedge::min_time_
float min_time_
Definition: PhiWedge.h:75
reco::PhiWedge::Energy
float Energy() const
Definition: PhiWedge.h:25
reco::PhiWedge::OverlappingCSCTracks
int OverlappingCSCTracks() const
Definition: PhiWedge.h:55
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
reco::PhiWedge::OverlappingCSCTracks_
int OverlappingCSCTracks_
Definition: PhiWedge.h:78
reco::PhiWedge::MaxTime
float MaxTime() const
Definition: PhiWedge.h:41
reco::PhiWedge::PlusZOriginConfidence_
float PlusZOriginConfidence_
Definition: PhiWedge.h:77
LEDCalibrationChannels.iphi
iphi
Definition: LEDCalibrationChannels.py:64
reco::PhiWedge
Definition: PhiWedge.h:13
reco::PhiWedge::OverlappingCSCSegments
int OverlappingCSCSegments() const
Definition: PhiWedge.h:56
reco::PhiWedge::PhiWedge
PhiWedge()
Definition: PhiWedge.cc:12
reco::PhiWedge::OverlappingCSCHaloTriggers
int OverlappingCSCHaloTriggers() const
Definition: PhiWedge.h:58
PhiWedge.h
reco::PhiWedge::OverlappingCSCHaloTriggers_
int OverlappingCSCHaloTriggers_
Definition: PhiWedge.h:81
reco::PhiWedge::MinTime
float MinTime() const
Definition: PhiWedge.h:40
reco::PhiWedge::NumberOfConstituents
int NumberOfConstituents() const
Definition: PhiWedge.h:28
reco::PhiWedge::max_time_
float max_time_
Definition: PhiWedge.h:76
reco::PhiWedge::OverlappingCSCRecHits
int OverlappingCSCRecHits() const
Definition: PhiWedge.h:57
reco::PhiWedge::energy_
float energy_
Definition: PhiWedge.h:72
reco::PhiWedge::iPhi
int iPhi() const
Definition: PhiWedge.h:31