33 #include "CLHEP/Random/RandFlat.h"
34 #include "CLHEP/Random/RandPoissonQ.h"
39 aveEff =
config.getParameter<
double>(
"averageEfficiency");
40 aveCls =
config.getParameter<
double>(
"averageClusterSize");
43 dtimCs =
config.getParameter<
double>(
"deltatimeAdjacentStrip");
45 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) {
124 float posX = roll->
strip(_hit->localPosition()) - static_cast<int>(roll->
strip(_hit->localPosition()));
128 if (CLHEP::RandFlat::shoot(engine) <
aveEff) {
129 int centralStrip =
topology.channel(entr) + 1;
130 int fstrip = centralStrip;
131 int lstrip = centralStrip;
135 int clsize = this->
getClSize(posX, engine);
137 std::vector<int> cls;
138 cls.push_back(centralStrip);
140 for (
int cl = 0;
cl < (clsize - 1) / 2;
cl++) {
141 if (centralStrip -
cl - 1 >= 1) {
142 fstrip = centralStrip -
cl - 1;
143 cls.push_back(fstrip);
145 if (centralStrip +
cl + 1 <= roll->
nstrips()) {
146 lstrip = centralStrip +
cl + 1;
147 cls.push_back(lstrip);
150 if (clsize % 2 == 0) {
155 if (lstrip < roll->nstrips()) {
157 cls.push_back(lstrip);
162 cls.push_back(fstrip);
168 for (std::vector<int>::iterator
i = cls.begin();
i != cls.end();
i++) {
170 std::pair<int, int> digi(*
i, time_hit);
182 unsigned int nstrips = roll->
nstrips();
186 if (rpcId.
region() == 0) {
199 for (
unsigned int j = 0;
j < vnoise.size(); ++
j) {
204 CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
205 N_hits = randPoissonQ.fire();
208 int time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (
nbxing *
gate) /
gate))) -
nbxing / 2;
209 std::pair<int, int> digi(
j + 1, time_hit);