CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
StripCPEESProducer.cc
Go to the documentation of this file.
13 
15 {
16  std::string name = p.getParameter<std::string>("ComponentName");
18  if (!p.exists("ComponentType"))
19  edm::LogWarning("StripCPEESProducer")<<" the CPE producer should contain a ComponentType, probably identical to ComponentName in the first step of migration. Falling back to:"<<type;
20  else
21  type=p.getParameter<std::string>("ComponentType");
22 
23  enumMap[std::string("SimpleStripCPE")]=SIMPLE;
24  enumMap[std::string("StripCPEfromTrackAngle")]=TRACKANGLE;
25  enumMap[std::string("StripCPEgeometric")]=GEOMETRIC;
26  enumMap[std::string("StripCPEfromTemplate")]=TEMPLATE;
27  if(enumMap.find(type)==enumMap.end())
28  throw cms::Exception("Unknown StripCPE type") << type;
29 
30  cpeNum = enumMap[type];
31  parametersPSet = (p.exists("parameters") ? p.getParameter<edm::ParameterSet>("parameters") : p);
32  setWhatProduced(this,name);
33 }
34 
35 boost::shared_ptr<StripClusterParameterEstimator> StripCPEESProducer::
36 produce(const TkStripCPERecord & iRecord)
37 {
40  edm::ESHandle<SiStripLorentzAngle> lorentzAngle; iRecord.getRecord<SiStripLorentzAngleDepRcd>().get(lorentzAngle);
41  edm::ESHandle<SiStripBackPlaneCorrection> backPlaneCorrection; iRecord.getRecord<SiStripBackPlaneCorrectionDepRcd>().get(backPlaneCorrection);
42  edm::ESHandle<SiStripConfObject> confObj; iRecord.getRecord<SiStripConfObjectRcd>().get(confObj);
43  edm::ESHandle<SiStripLatency> latency; iRecord.getRecord<SiStripLatencyRcd>().get(latency);
47 
48 
49  switch(cpeNum) {
50 
51  case SIMPLE:
52  cpe = boost::shared_ptr<StripClusterParameterEstimator>(new StripCPE( parametersPSet, *magfield, *pDD, *lorentzAngle, *backPlaneCorrection, *confObj, *latency ));
53  break;
54 
55  case TRACKANGLE:
56  cpe = boost::shared_ptr<StripClusterParameterEstimator>(new StripCPEfromTrackAngle( parametersPSet, *magfield, *pDD, *lorentzAngle, *backPlaneCorrection, *confObj, *latency ));
57  break;
58 
59  case GEOMETRIC:
60  cpe = boost::shared_ptr<StripClusterParameterEstimator>(new StripCPEgeometric(parametersPSet, *magfield, *pDD, *lorentzAngle, *backPlaneCorrection, *confObj, *latency ));
61  break;
62 
63  case TEMPLATE:
64  cpe = boost::shared_ptr<StripClusterParameterEstimator>(new StripCPEfromTemplate( parametersPSet, *magfield, *pDD, *lorentzAngle, *backPlaneCorrection, *confObj, *latency ));
65  break;
66 
67  }
68 
69  return cpe;
70 }
type
Definition: HCALResponse.h:21
T getParameter(std::string const &) const
edm::ParameterSet parametersPSet
tuple magfield
Definition: HLT_ES_cff.py:2311
bool exists(std::string const &parameterName) const
checks if a parameter exists
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
int bad(Items const &cont)
boost::shared_ptr< StripClusterParameterEstimator > cpe
std::map< std::string, CPE_t > enumMap
StripCPEESProducer(const edm::ParameterSet &)
boost::shared_ptr< StripClusterParameterEstimator > produce(const TkStripCPERecord &)