34 #include "CLHEP/Random/RandFlat.h" 35 #include "CLHEP/Random/RandPoissonQ.h" 58 std::cout <<
"Average Cluster Size = "<<aveCls<<
" strips"<<std::endl;
59 std::cout <<
"RPC Time Resolution = "<<resRPC<<
" ns"<<std::endl;
60 std::cout <<
"RPC Signal formation time = "<<timOff<<
" ns"<<std::endl;
61 std::cout <<
"RPC adjacent strip delay = "<<dtimCs<<
" ns"<<std::endl;
62 std::cout <<
"Electronic Jitter = "<<resEle<<
" 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;
86 double rr_cl = CLHEP::RandFlat::shoot(engine);
87 if(0.0 <= posX && posX < 0.2) {
88 func = (clsMap[1])[(clsMap[1]).size()-1]*(rr_cl);
89 sum_clsize = clsMap[1];
91 if(0.2 <= posX && posX < 0.4) {
92 func = (clsMap[2])[(clsMap[2]).size()-1]*(rr_cl);
93 sum_clsize = clsMap[2];
95 if(0.4 <= posX && posX < 0.6) {
96 func = (clsMap[3])[(clsMap[3]).size()-1]*(rr_cl);
97 sum_clsize = clsMap[3];
99 if(0.6 <= posX && posX < 0.8) {
100 func = (clsMap[4])[(clsMap[4]).size()-1]*(rr_cl);
101 sum_clsize = clsMap[4];
103 if(0.8 <= posX && posX < 1.0) {
104 func = (clsMap[5])[(clsMap[5]).size()-1]*(rr_cl);
105 sum_clsize = clsMap[5];
108 for(vector<double>::iterator iter = sum_clsize.begin();
109 iter != sum_clsize.end(); ++iter){
114 else if(func < (*iter)){
125 CLHEP::HepRandomEngine* engine)
134 for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin();
135 _hit != rpcHits.end(); ++_hit){
140 float posX = roll->
strip(_hit->localPosition()) - static_cast<int>(roll->
strip(_hit->localPosition()));
144 if (CLHEP::RandFlat::shoot(engine) <
aveEff) {
146 int centralStrip = topology.channel(entr)+1;
147 int fstrip=centralStrip;
148 int lstrip=centralStrip;
152 int clsize = this->
getClSize(posX, engine);
154 std::vector<int> cls;
155 cls.push_back(centralStrip);
157 for (
int cl = 0;
cl < (clsize-1)/2;
cl++)
159 if (centralStrip -
cl -1 >= 1 ){
160 fstrip = centralStrip-
cl-1;
161 cls.push_back(fstrip);
163 if (centralStrip +
cl + 1 <= roll->
nstrips() ){
164 lstrip = centralStrip+
cl+1;
165 cls.push_back(lstrip);
173 if (lstrip < roll->nstrips() ){
175 cls.push_back(lstrip);
180 cls.push_back(fstrip);
186 for (std::vector<int>::iterator
i=cls.begin();
i!=cls.end();
i++){
188 std::pair<int, int> digi(*
i,time_hit );
201 unsigned int nstrips = roll->
nstrips();
205 if ( rpcId.
region() == 0 )
212 area = striplength*(xmax-
xmin);
220 area = striplength*(xmax-
xmin);
222 for(
unsigned int j = 0; j < vnoise.size(); ++j){
224 if(j >= nstrips)
break;
227 CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
228 N_hits = randPoissonQ.fire();
231 int time_hit = (
static_cast<int>(CLHEP::RandFlat::shoot(engine, (
nbxing*
gate)/gate))) -
nbxing/2;
232 std::pair<int, int> digi(j+1,time_hit);
T getParameter(std::string const &) const
float strip(const LocalPoint &lp) const
const Topology & topology() const override
LocalPoint centreOfStrip(int strip) const
LocalPoint localPosition(float strip) const override
CaloTopology const * topology(0)
DetectorHitMap theDetectorHitMap
void setRPCSimSetUp(RPCSimSetUp *simsetup)
constexpr uint32_t rawId() const
get the raw id
LocalPoint localPosition(float strip) const override
RPCSimSetUp * getRPCSimSetUp()
const RPCRollSpecs * specs() const
const Topology & topology() const override
int getSimHitBx(const PSimHit *, CLHEP::HepRandomEngine *)
std::set< std::pair< int, int > > strips
int getClSize(float posX, CLHEP::HepRandomEngine *)
std::map< int, std::vector< double > > clsMap
edm::DetSet< RPCDigiSimLink > RPCDigiSimLinks
Container::value_type value_type
void simulateNoise(const RPCRoll *, CLHEP::HepRandomEngine *) override
const std::map< int, std::vector< double > > & getClsMap()
float stripLength() const override
det heigth (strip length in the middle)
void simulate(const RPCRoll *roll, const edm::PSimHitContainer &rpcHits, CLHEP::HepRandomEngine *) override
RPCSimAverageNoise(const edm::ParameterSet &config)
~RPCSimAverageNoise() override
RPCSynchronizer * _rpcSync
std::vector< PSimHit > PSimHitContainer
RPCDigiSimLinks theRpcDigiSimLinks
std::vector< double > sum_clsize
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
float stripLength() const override