CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCDigiProducer.cc
Go to the documentation of this file.
2 
4 
7 
9 
12 
14 
22 
23 #include <string>
24 
26 : theDigitizer(ps),
27  theStripConditions(0)
28 {
29  produces<CSCWireDigiCollection>("MuonCSCWireDigi");
30  produces<CSCStripDigiCollection>("MuonCSCStripDigi");
31  produces<CSCComparatorDigiCollection>("MuonCSCComparatorDigi");
32  produces<DigiSimLinks>("MuonCSCWireDigiSimLinks");
33  produces<DigiSimLinks>("MuonCSCStripDigiSimLinks");
34  std::string stripConditions( ps.getParameter<std::string>("stripConditions") );
35  geometryType = ps.getParameter<std::string>("GeometryType");
36  edm::ParameterSet stripPSet = ps.getParameter<edm::ParameterSet>("strips");
37  if( stripConditions == "Configurable" )
38  {
40  }
41  else if ( stripConditions == "Database" )
42  {
44  }
45  else
46  {
47  throw cms::Exception("CSCDigiProducer")
48  << "Bad option for strip conditions: "
49  << stripConditions;
50  }
52 
54  if ( ! rng.isAvailable()) {
55  throw cms::Exception("Configuration")
56  << "CSCDigitizer requires the RandomNumberGeneratorService\n"
57  "which is not present in the configuration file. You must add the service\n"
58  "in the configuration file or remove the modules that require it.";
59  }
60 
61  CLHEP::HepRandomEngine& engine = rng->getEngine();
62 
65 
66  std::string mix_ = ps.getParameter<std::string>("mixLabel");
67  std::string collection_ = ps.getParameter<std::string>("InputCollection");
68  cf_token = consumes<CrossingFrame<PSimHit> >( edm::InputTag(mix_, collection_) );
69 }
70 
71 
73 {
74  delete theStripConditions;
75 }
76 
77 
79 
81  e.getByToken(cf_token, cf);
82 
83  std::auto_ptr<MixCollection<PSimHit> >
84  hits( new MixCollection<PSimHit>(cf.product()) );
85 
86  // Create empty output
87 
88  std::auto_ptr<CSCWireDigiCollection> pWireDigis(new CSCWireDigiCollection());
89  std::auto_ptr<CSCStripDigiCollection> pStripDigis(new CSCStripDigiCollection());
90  std::auto_ptr<CSCComparatorDigiCollection> pComparatorDigis(new CSCComparatorDigiCollection());
91  std::auto_ptr<DigiSimLinks> pWireDigiSimLinks(new DigiSimLinks() );
92  std::auto_ptr<DigiSimLinks> pStripDigiSimLinks(new DigiSimLinks() );
93 
94  //@@ DOES NOTHING IF NO HITS. Remove this for when there's real neutrons
95  if(hits->size() > 0)
96  {
97  // find the geometry & conditions for this event
99  eventSetup.get<MuonGeometryRecord>().get(geometryType,hGeom);
100  const CSCGeometry *pGeom = &*hGeom;
101 
102  theDigitizer.setGeometry( pGeom );
103 
104  // find the magnetic field
106  eventSetup.get<IdealMagneticFieldRecord>().get(magfield);
107 
108  theDigitizer.setMagneticField(&*magfield);
109 
110 
111  // set the particle table
113  eventSetup.getData( pdt );
115 
116  theStripConditions->initializeEvent(eventSetup);
117 
118  // run the digitizer
119  theDigitizer.doAction(*hits, *pWireDigis, *pStripDigis, *pComparatorDigis,
120  *pWireDigiSimLinks, *pStripDigiSimLinks);
121  }
122 
123 
124  // store them in the event
125  e.put(pWireDigis, "MuonCSCWireDigi");
126  e.put(pStripDigis, "MuonCSCStripDigi");
127  e.put(pComparatorDigis, "MuonCSCComparatorDigi");
128  e.put(pWireDigiSimLinks, "MuonCSCWireDigiSimLinks");
129  e.put(pStripDigiSimLinks, "MuonCSCStripDigiSimLinks");
130 }
131 
T getParameter(std::string const &) const
CSCDigiProducer(const edm::ParameterSet &ps)
CSCDigitizer::DigiSimLinks DigiSimLinks
CSCDigitizer theDigitizer
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
tuple magfield
Definition: HLT_ES_cff.py:2311
void setRandomEngine(CLHEP::HepRandomEngine &engine)
MuonDigiCollection< CSCDetId, CSCStripDigi > CSCStripDigiCollection
CSCStripConditions * theStripConditions
void setRandomEngine(CLHEP::HepRandomEngine &engine)
virtual void initializeEvent(const edm::EventSetup &es)
std::string geometryType
void getData(T &iHolder) const
Definition: EventSetup.h:67
MuonDigiCollection< CSCDetId, CSCComparatorDigi > CSCComparatorDigiCollection
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
void doAction(MixCollection< PSimHit > &simHits, CSCWireDigiCollection &wireDigis, CSCStripDigiCollection &stripDigis, CSCComparatorDigiCollection &comparators, DigiSimLinks &wireDigiSimLinks, DigiSimLinks &stripDigiSimLinks)
Definition: CSCDigitizer.cc:45
bool isAvailable() const
Definition: Service.h:46
void setStripConditions(CSCStripConditions *cond)
virtual CLHEP::HepRandomEngine & getEngine() const =0
Use this to get the random number engine, this is the only function most users should call...
MuonDigiCollection< CSCDetId, CSCWireDigi > CSCWireDigiCollection
const T & get() const
Definition: EventSetup.h:55
void setParticleDataTable(const ParticleDataTable *pdt)
T const * product() const
Definition: Handle.h:81
virtual void produce(edm::Event &e, const edm::EventSetup &c)
void setGeometry(const CSCGeometry *geom)
sets geometry
Definition: CSCDigitizer.h:57
virtual ~CSCDigiProducer()
void setMagneticField(const MagneticField *field)
sets the magnetic field