34 #include "CLHEP/Random/RandFlat.h"
35 #include "CLHEP/Random/RandPoissonQ.h"
40 aveEff =
config.getParameter<
double>(
"averageEfficiency");
41 aveCls =
config.getParameter<
double>(
"averageClusterSize");
44 dtimCs =
config.getParameter<
double>(
"deltatimeAdjacentStrip");
46 sspeed =
config.getParameter<
double>(
"signalPropagationSpeed");
55 std::cout <<
"Average Cluster Size = " <<
aveCls <<
" strips" << std::endl;
57 std::cout <<
"RPC Signal formation time = " <<
timOff <<
" ns" << std::endl;
58 std::cout <<
"RPC adjacent strip delay = " <<
dtimCs <<
" ns" << std::endl;
60 std::cout <<
"Signal propagation time = " <<
sspeed <<
" x c" << std::endl;
61 std::cout <<
"Link Board Gate Width = " <<
lbGate <<
" ns" << std::endl;
77 double rr_cl = CLHEP::RandFlat::shoot(engine);
101 if (
func > (*iter)) {
103 }
else if (
func < (*iter)) {
112 CLHEP::HepRandomEngine* engine) {
120 for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin(); _hit != rpcHits.end(); ++_hit) {
126 float posX = roll->
strip(_hit->localPosition()) - static_cast<int>(roll->
strip(_hit->localPosition()));
131 if (CLHEP::RandFlat::shoot(engine) <
aveEff) {
132 int centralStrip =
topology.channel(entr) + 1;
133 int fstrip = centralStrip;
134 int lstrip = centralStrip;
138 int clsize = this->
getClSize(posX, engine);
140 std::vector<int> cls;
141 cls.push_back(centralStrip);
143 for (
int cl = 0;
cl < (clsize - 1) / 2;
cl++)
144 if (centralStrip -
cl - 1 >= 1) {
145 fstrip = centralStrip -
cl - 1;
146 cls.push_back(fstrip);
148 for (
int cl = 0;
cl < (clsize - 1) / 2;
cl++)
149 if (centralStrip +
cl + 1 <= roll->
nstrips()) {
150 lstrip = centralStrip +
cl + 1;
151 cls.push_back(lstrip);
153 if (clsize % 2 == 0) {
158 if (lstrip < roll->nstrips()) {
160 cls.push_back(lstrip);
165 cls.push_back(fstrip);
171 for (std::vector<int>::iterator
i = cls.begin();
i != cls.end();
i++) {
173 std::pair<int, int> digi(*
i, time_hit);
186 if (rpcId.
region() == 0) {
202 CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
203 N_hits = randPoissonQ.fire();
206 int strip = static_cast<int>(CLHEP::RandFlat::shoot(engine, 1, nstrips));
208 time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (
nbxing *
gate) /
gate))) -
nbxing / 2;
209 std::pair<int, int> digi(
strip, time_hit);