35 #include "CLHEP/Random/RandFlat.h"
36 #include "CLHEP/Random/RandPoissonQ.h"
41 aveEff =
config.getParameter<
double>(
"averageEfficiency");
42 aveCls =
config.getParameter<
double>(
"averageClusterSize");
45 dtimCs =
config.getParameter<
double>(
"deltatimeAdjacentStrip");
47 sspeed =
config.getParameter<
double>(
"signalPropagationSpeed");
58 std::cout <<
"Average Cluster Size = " <<
aveCls <<
" strips" << std::endl;
60 std::cout <<
"RPC Signal formation time = " <<
timOff <<
" ns" << std::endl;
61 std::cout <<
"RPC adjacent strip delay = " <<
dtimCs <<
" ns" << std::endl;
63 std::cout <<
"Signal propagation time = " <<
sspeed <<
" x c" << std::endl;
64 std::cout <<
"Link Board Gate Width = " <<
lbGate <<
" ns" << std::endl;
80 double rr_cl = CLHEP::RandFlat::shoot(engine);
104 if (
func > (*iter)) {
106 }
else if (
func < (*iter)) {
115 CLHEP::HepRandomEngine* engine) {
127 for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin(); _hit != rpcHits.end(); ++_hit) {
128 if (_hit->particleType() == 11)
135 float posX = roll->
strip(_hit->localPosition()) - static_cast<int>(roll->
strip(_hit->localPosition()));
137 std::vector<float> veff = (
getRPCSimSetUp())->getEff(rpcId.rawId());
140 int centralStrip =
topology.channel(entr) + 1;
142 float fire = CLHEP::RandFlat::shoot(engine);
144 if (fire < veff[centralStrip - 1]) {
145 int fstrip = centralStrip;
146 int lstrip = centralStrip;
151 int clsize = this->
getClSize(posX, engine);
153 std::vector<int> cls;
154 cls.push_back(centralStrip);
156 for (
int cl = 0;
cl < (clsize - 1) / 2;
cl++) {
157 if (centralStrip -
cl - 1 >= 1) {
158 fstrip = centralStrip -
cl - 1;
159 cls.push_back(fstrip);
161 if (centralStrip +
cl + 1 <= roll->
nstrips()) {
162 lstrip = centralStrip +
cl + 1;
163 cls.push_back(lstrip);
166 if (clsize % 2 == 0) {
171 if (lstrip < roll->nstrips()) {
173 cls.push_back(lstrip);
178 cls.push_back(fstrip);
184 for (std::vector<int>::iterator
i = cls.begin();
i != cls.end();
i++) {
186 if (*
i != centralStrip) {
187 if (CLHEP::RandFlat::shoot(engine) < veff[*
i - 1]) {
188 std::pair<int, int> digi(*
i, time_hit);
194 std::pair<int, int> digi(*
i, time_hit);
213 unsigned int nstrips = roll->
nstrips();
216 if (rpcId.
region() == 0) {
230 for (
unsigned int j = 0;
j < vnoise.size(); ++
j) {
244 CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
245 N_hits = randPoissonQ.fire();
248 int time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (
nbxing *
gate) /
gate))) -
nbxing / 2;
249 std::pair<int, int> digi(
j + 1, time_hit);