CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
L1MuonRegionProducer Class Reference

#include <L1MuonRegionProducer.h>

Inheritance diagram for L1MuonRegionProducer:
TrackingRegionProducer

Public Member Functions

 L1MuonRegionProducer (const edm::ParameterSet &cfg)
 
virtual std::vector
< TrackingRegion * > 
regions (const edm::Event &ev, const edm::EventSetup &es) const
 
void setL1Constraint (const L1MuGMTCand &muon)
 
virtual ~L1MuonRegionProducer ()
 
- Public Member Functions inherited from TrackingRegionProducer
virtual ~TrackingRegionProducer ()
 

Private Attributes

int theChargeL1
 
double theEtaL1
 
GlobalPoint theOrigin
 
double theOriginHalfLength
 
double theOriginRadius
 
double thePhiL1
 
double thePtL1
 
double thePtMin
 

Detailed Description

Definition at line 12 of file L1MuonRegionProducer.h.

Constructor & Destructor Documentation

L1MuonRegionProducer::L1MuonRegionProducer ( const edm::ParameterSet cfg)

Definition at line 11 of file L1MuonRegionProducer.cc.

References edm::ParameterSet::getParameter().

11  {
12 
13  edm::ParameterSet regionPSet = cfg.getParameter<edm::ParameterSet>("RegionPSet");
14 
15  thePtMin = regionPSet.getParameter<double>("ptMin");
16  theOriginRadius = regionPSet.getParameter<double>("originRadius");
17  theOriginHalfLength = regionPSet.getParameter<double>("originHalfLength");
18  theOrigin = GlobalPoint( regionPSet.getParameter<double>("originXPos"),
19  regionPSet.getParameter<double>("originYPos"),
20  regionPSet.getParameter<double>("originZPos"));
21 }
T getParameter(std::string const &) const
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
virtual L1MuonRegionProducer::~L1MuonRegionProducer ( )
inlinevirtual

Definition at line 16 of file L1MuonRegionProducer.h.

16 {}

Member Function Documentation

std::vector< TrackingRegion * > L1MuonRegionProducer::regions ( const edm::Event ev,
const edm::EventSetup es 
) const
virtual

Implements TrackingRegionProducer.

Definition at line 31 of file L1MuonRegionProducer.cc.

References funct::cos(), L1MuonPixelTrackFitter::getBending(), L1MuonPixelTrackFitter::getBendingError(), query::result, and funct::sin().

Referenced by TSGFromL1Muon::produce().

32 {
33  double dx = cos(thePhiL1);
34  double dy = sin(thePhiL1);
35  double dz = sinh(theEtaL1);
36  GlobalVector direction(dx,dy,dz); // muon direction
37 
38  std::vector<TrackingRegion* > result;
40  bending = fabs(bending);
42 
43  result.push_back(
45  thePtMin, theOriginRadius, theOriginHalfLength, 0.15, bending+3*errBending) );
46 
47  return result;
48 }
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
static double getBendingError(double invPt, double eta)
tuple result
Definition: query.py:137
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
static double getBending(double invPt, double eta, int charge)
void L1MuonRegionProducer::setL1Constraint ( const L1MuGMTCand muon)

Definition at line 23 of file L1MuonRegionProducer.cc.

References L1MuGMTCand::charge(), L1MuGMTCand::etaValue(), and L1MuGMTCand::phiValue().

Referenced by TSGFromL1Muon::produce().

24 {
25  thePhiL1 = muon.phiValue()+0.021817;
26  theEtaL1 = muon.etaValue();
27  theChargeL1 = muon.charge();
28 }
float etaValue() const
Definition: L1MuGMTCand.cc:116
float phiValue() const
Definition: L1MuGMTCand.cc:102
int charge() const
get charge (+1 -1)
Definition: L1MuGMTCand.h:137

Member Data Documentation

int L1MuonRegionProducer::theChargeL1
private

Definition at line 27 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::theEtaL1
private

Definition at line 27 of file L1MuonRegionProducer.h.

GlobalPoint L1MuonRegionProducer::theOrigin
private

Definition at line 24 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::theOriginHalfLength
private

Definition at line 23 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::theOriginRadius
private

Definition at line 23 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::thePhiL1
private

Definition at line 27 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::thePtL1
private

Definition at line 27 of file L1MuonRegionProducer.h.

double L1MuonRegionProducer::thePtMin
private

Definition at line 23 of file L1MuonRegionProducer.h.