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");
56 std::cout <<
"Average Cluster Size = " <<
aveCls <<
" strips" << std::endl;
58 std::cout <<
"RPC Signal formation time = " <<
timOff <<
" ns" << std::endl;
59 std::cout <<
"RPC adjacent strip delay = " <<
dtimCs <<
" ns" << std::endl;
61 std::cout <<
"Signal propagation time = " <<
sspeed <<
" x c" << std::endl;
62 std::cout <<
"Link Board Gate Width = " <<
lbGate <<
" ns" << std::endl;
78 double rr_cl = CLHEP::RandFlat::shoot(engine);
102 if (
func > (*iter)) {
104 }
else if (
func < (*iter)) {
113 CLHEP::HepRandomEngine* engine) {
121 for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin(); _hit != rpcHits.end(); ++_hit) {
125 float posX = roll->
strip(_hit->localPosition()) - static_cast<int>(roll->
strip(_hit->localPosition()));
129 if (CLHEP::RandFlat::shoot(engine) <
aveEff) {
130 int centralStrip =
topology.channel(entr) + 1;
131 int fstrip = centralStrip;
132 int lstrip = centralStrip;
136 int clsize = this->
getClSize(posX, engine);
138 std::vector<int> cls;
139 cls.push_back(centralStrip);
141 for (
int cl = 0;
cl < (clsize - 1) / 2;
cl++) {
142 if (centralStrip -
cl - 1 >= 1) {
143 fstrip = centralStrip -
cl - 1;
144 cls.push_back(fstrip);
146 if (centralStrip +
cl + 1 <= roll->
nstrips()) {
147 lstrip = centralStrip +
cl + 1;
148 cls.push_back(lstrip);
151 if (clsize % 2 == 0) {
156 if (lstrip < roll->nstrips()) {
158 cls.push_back(lstrip);
163 cls.push_back(fstrip);
169 for (std::vector<int>::iterator
i = cls.begin();
i != cls.end();
i++) {
171 std::pair<int, int> digi(*
i, time_hit);
183 unsigned int nstrips = roll->
nstrips();
187 if (rpcId.
region() == 0) {
200 for (
unsigned int j = 0;
j < vnoise.size(); ++
j) {
205 CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
206 N_hits = randPoissonQ.fire();
209 int time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (
nbxing *
gate) /
gate))) -
nbxing / 2;
210 std::pair<int, int> digi(
j + 1, time_hit);