CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCDigiProducer.cc
Go to the documentation of this file.
22 #include <sstream>
23 #include <string>
24 
25 #include <map>
26 #include <vector>
27 
30 
31 //Random Number
35 #include "CLHEP/Random/RandomEngine.h"
36 
37 
38 
40 
41  produces<RPCDigiCollection>();
42  produces<RPCDigitizerSimLinks>("RPCDigiSimLink");
43 
44  //Name of Collection used for create the XF
45  collection_for_XF = ps.getParameter<std::string>("InputCollection");
46 
48  if ( ! rng.isAvailable()) {
49  throw cms::Exception("Configuration")
50  << "RPCDigitizer requires the RandomNumberGeneratorService\n"
51  "which is not present in the configuration file. You must add the service\n"
52  "in the configuration file or remove the modules that require it.";
53  }
54 
55 
56  CLHEP::HepRandomEngine& engine = rng->getEngine();
57 
58  theRPCSimSetUp = new RPCSimSetUp(ps);
59  theDigitizer = new RPCDigitizer(ps,engine);
60 
61 
62 }
63 
65  delete theDigitizer;
66  delete theRPCSimSetUp;
67 }
68 
70 
72  eventSetup.get<MuonGeometryRecord>().get( hGeom );
73  const RPCGeometry *pGeom = &*hGeom;
74 
76  eventSetup.get<RPCStripNoisesRcd>().get(noiseRcd);
77 
79  eventSetup.get<RPCClusterSizeRcd>().get(clsRcd);
80 
81  theRPCSimSetUp->setRPCSetUp(noiseRcd->getVNoise(), clsRcd->getCls());
82 // theRPCSimSetUp->setRPCSetUp(noiseRcd->getVNoise(), noiseRcd->getCls());
83 
84  theDigitizer->setGeometry( pGeom );
85  theRPCSimSetUp->setGeometry( pGeom );
87 }
88 
90 
92  e.getByLabel("mix", collection_for_XF, cf);
93 
94  std::auto_ptr<MixCollection<PSimHit> >
95  hits( new MixCollection<PSimHit>(cf.product()) );
96 
97  // Create empty output
98  std::auto_ptr<RPCDigiCollection> pDigis(new RPCDigiCollection());
99  std::auto_ptr<RPCDigitizerSimLinks> RPCDigitSimLink(new RPCDigitizerSimLinks() );
100 
101  // run the digitizer
102  theDigitizer->doAction(*hits, *pDigis, *RPCDigitSimLink);
103 
104  // store them in the event
105  e.put(pDigis);
106  e.put(RPCDigitSimLink,"RPCDigiSimLink");
107 }
108 
T getParameter(std::string const &) const
std::string collection_for_XF
virtual void produce(edm::Event &e, const edm::EventSetup &c)
RPCDigiProducer(const edm::ParameterSet &ps)
void setGeometry(const RPCGeometry *geom)
sets geometry
Definition: RPCDigitizer.h:44
void setGeometry(const RPCGeometry *geom)
sets geometry
Definition: RPCSimSetUp.h:46
RPCSimSetUp * theRPCSimSetUp
void setRPCSimSetUp(RPCSimSetUp *simsetup)
Definition: RPCDigitizer.h:46
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
MuonDigiCollection< RPCDetId, RPCDigi > RPCDigiCollection
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:359
virtual ~RPCDigiProducer()
void setRPCSetUp(std::vector< RPCStripNoises::NoiseItem > vnoise, std::vector< float > vcls)
Definition: RPCSimSetUp.cc:46
const T & get() const
Definition: EventSetup.h:55
RPCDigitizer::RPCDigiSimLinks RPCDigitizerSimLinks
void doAction(MixCollection< PSimHit > &simHits, RPCDigiCollection &rpcDigis, RPCDigiSimLinks &rpcDigiSimLink)
Definition: RPCDigitizer.cc:24
T const * product() const
Definition: Handle.h:74
RPCDigitizer * theDigitizer
virtual void beginRun(edm::Run &, const edm::EventSetup &)
Definition: Run.h:31