CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GEMDigiProducer.cc
Go to the documentation of this file.
1 #ifndef SimMuon_GEMDigitizer_GEMDigiProducer_h
2 #define SimMuon_GEMDigitizer_GEMDigiProducer_h
3 
5 
25 
28 
29 #include <sstream>
30 #include <string>
31 #include <map>
32 #include <vector>
33 
34 namespace CLHEP {
35  class HepRandomEngine;
36 }
37 
39 public:
41 
42  explicit GEMDigiProducer(const edm::ParameterSet& ps);
43 
44  ~GEMDigiProducer() override;
45 
46  void beginRun(const edm::Run&, const edm::EventSetup&) override;
47 
48  void produce(edm::Event&, const edm::EventSetup&) override;
49 
50  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
51 
52 private:
53  //Name of Collection used for create the XF
56 
58 
59  std::unique_ptr<GEMDigiModule> gemDigiModule_;
60 };
61 
62 GEMDigiProducer::GEMDigiProducer(const edm::ParameterSet& ps) : gemDigiModule_(std::make_unique<GEMDigiModule>(ps)) {
63  produces<GEMDigiCollection>();
64  produces<GEMDigiSimLinks>("GEM");
65 
67  if (!rng.isAvailable()) {
68  throw cms::Exception("Configuration")
69  << "GEMDigiProducer::GEMDigiProducer() - RandomNumberGeneratorService is not present in configuration file.\n"
70  << "Add the service in the configuration file or remove the modules that require it.";
71  }
72 
73  std::string mix_(ps.getParameter<std::string>("mixLabel"));
74  std::string collection_(ps.getParameter<std::string>("inputCollection"));
75 
76  cf_token = consumes<CrossingFrame<PSimHit> >(edm::InputTag(mix_, collection_));
77  geom_token_ = esConsumes<GEMGeometry, MuonGeometryRecord, edm::Transition::BeginRun>();
78 }
79 
81 
84  desc.add<std::string>("inputCollection", "g4SimHitsMuonGEMHits");
85  desc.add<std::string>("mixLabel", "mix");
86 
87  desc.add<double>("signalPropagationSpeed", 0.66);
88  desc.add<double>("timeResolution", 5.);
89  desc.add<double>("timeJitter", 1.0);
90  desc.add<double>("averageShapingTime", 50.0);
91  desc.add<double>("averageEfficiency", 0.98);
92  desc.add<double>("averageNoiseRate", 0.001);
93  // intrinsic noise rate (Hz/cm^2)
94 
95  // in terms of 25 ns
96  desc.add<int>("minBunch", -5);
97  desc.add<int>("maxBunch", 3);
98 
99  desc.add<bool>("fixedRollRadius", true);
100  // Uses fixed radius in the center of the roll
101  desc.add<bool>("digitizeOnlyMuons", false);
102  desc.add<bool>("simulateBkgNoise", false);
103  // false == No background simulation
104  desc.add<bool>("simulateNoiseCLS", true);
105  desc.add<bool>("simulateElectronBkg", true);
106  // flase == simulate only neutral bkg
107  desc.add<bool>("simulateIntrinsicNoise", false);
108  desc.add<bool>("bx0filter", false);
109 
110  desc.add<double>("instLumi", 7.5);
111  // in units of 1E34 cm^-2 s^-1. Internally the background is parmetrized from FLUKA+GEANT result at 5E+34 (PU 140). We are adding a 1.5 factor for PU 200
112  desc.add<double>("rateFact", 1.0);
113  // We are adding also a safety factor of 2 to tak into account the new beam pipe effect (not yet known). Hits can be thrown away later at re-digi step. Parameters are kept in sync with the ones used in the GEM digitizer
114  desc.add<double>("bxWidth", 25E-9);
115  desc.add<double>("referenceInstLumi", 5.);
116  // referecne inst. luminosity 5E+34 cm^-2s^-1
117  desc.add<double>("resolutionX", 0.03);
118 
119  // The follwing parameters are needed to model the background contribution
120  // The parameters have been obtained after the fit of th perdicted by FLUKA
121  // By default the backgroundmodeling with these parameters should be disabled with
122  // the 9_2_X release setting simulateBkgNoise = false
123  desc.add<double>("GE11ModNeuBkgParam0", 5710.23);
124  desc.add<double>("GE11ModNeuBkgParam1", -43.3928);
125  desc.add<double>("GE11ModNeuBkgParam2", 0.0863681);
126  desc.add<double>("GE21ModNeuBkgParam0", 1440.44);
127  desc.add<double>("GE21ModNeuBkgParam1", -7.48607);
128  desc.add<double>("GE21ModNeuBkgParam2", 0.0103078);
129  desc.add<double>("GE11ElecBkgParam0", 406.249);
130  desc.add<double>("GE11ElecBkgParam1", -2.90939);
131  desc.add<double>("GE11ElecBkgParam2", 0.00548191);
132  desc.add<double>("GE21ElecBkgParam0", 97.0505);
133  desc.add<double>("GE21ElecBkgParam1", -43.3928);
134  desc.add<double>("GE21ElecBkgParam2", 00.000550599);
135 
136  descriptions.add("simMuonGEMDigisDef", desc);
137 }
138 
139 void GEMDigiProducer::beginRun(const edm::Run&, const edm::EventSetup& eventSetup) {
141  gemDigiModule_->setGeometry(&*hGeom);
142  geometry_ = &*hGeom;
143 }
144 
147  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
148 
150  e.getByToken(cf_token, cf);
151 
152  MixCollection<PSimHit> hits{cf.product()};
153 
154  // Create empty output
155  auto digis = std::make_unique<GEMDigiCollection>();
156  auto gemDigiSimLinks = std::make_unique<GEMDigiSimLinks>();
157 
158  // arrange the hits by eta partition
159  std::map<uint32_t, edm::PSimHitContainer> hitMap;
160  for (const auto& hit : hits) {
161  hitMap[GEMDetId(hit.detUnitId()).rawId()].emplace_back(hit);
162  }
163 
164  // simulate signal and noise for each eta partition
165  const auto& etaPartitions(geometry_->etaPartitions());
166 
167  for (const auto& roll : etaPartitions) {
168  const GEMDetId detId(roll->id());
169  const uint32_t rawId(detId.rawId());
170  const auto& simHits(hitMap[rawId]);
171 
172  LogDebug("GEMDigiProducer") << "GEMDigiProducer: found " << simHits.size() << " hit(s) in eta partition" << rawId;
173 
174  gemDigiModule_->simulate(roll, simHits, engine);
175  gemDigiModule_->fillDigis(rawId, *digis);
176  (*gemDigiSimLinks).insert(gemDigiModule_->gemDigiSimLinks());
177  }
178 
179  // store them in the event
180  e.put(std::move(digis));
181  e.put(std::move(gemDigiSimLinks), "GEM");
182 }
183 
185 #endif
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
~GEMDigiProducer() override
edm::ESGetToken< GEMGeometry, MuonGeometryRecord > geom_token_
def move
Definition: eostools.py:511
const std::vector< const GEMEtaPartition * > & etaPartitions() const
Return a vector of all GEM eta partitions.
Definition: GEMGeometry.cc:40
GEMDigiProducer(const edm::ParameterSet &ps)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
std::unique_ptr< GEMDigiModule > gemDigiModule_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
T const * product() const
Definition: Handle.h:70
void beginRun(const edm::Run &, const edm::EventSetup &) override
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
tuple simHits
Definition: trackerHits.py:16
void add(std::string const &label, ParameterSetDescription const &psetDescription)
const GEMGeometry * geometry_
void produce(edm::Event &, const edm::EventSetup &) override
StreamID streamID() const
Definition: Event.h:98
edm::DetSetVector< GEMDigiSimLink > GEMDigiSimLinks
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:157
Definition: Run.h:45
#define LogDebug(id)