![]() |
![]() |
00001 #ifndef RPCDigitizer_RPCSimAverage_h 00002 #define RPCDigitizer_RPCSimAverage_h 00003 00010 #include "SimMuon/RPCDigitizer/src/RPCSim.h" 00011 #include "SimMuon/RPCDigitizer/src/RPCSynchronizer.h" 00012 00013 #include<cstring> 00014 #include<iostream> 00015 #include<fstream> 00016 #include<string> 00017 #include<vector> 00018 #include<stdlib.h> 00019 #include <FWCore/Framework/interface/EventSetup.h> 00020 00021 00022 class RPCGeometry; 00023 00024 namespace CLHEP { 00025 class HepRandomEngine; 00026 class RandFlat; 00027 class RandPoissonQ; 00028 } 00029 00030 class RPCSimAverage : public RPCSim 00031 { 00032 public: 00033 00034 RPCSimAverage(const edm::ParameterSet& config); 00035 ~RPCSimAverage(); 00036 00037 void simulate(const RPCRoll* roll, 00038 const edm::PSimHitContainer& rpcHits); 00039 00040 void simulateNoise(const RPCRoll*); 00041 00042 int getClSize(float posX); 00043 00044 private: 00045 void init(){}; 00046 private: 00047 double aveEff; 00048 double aveCls; 00049 double resRPC; 00050 double timOff; 00051 double dtimCs; 00052 double resEle; 00053 double sspeed; 00054 double lbGate; 00055 bool rpcdigiprint; 00056 00057 int N_hits; 00058 int nbxing; 00059 double rate; 00060 double gate; 00061 00062 std::map< int, std::vector<double> > clsMap; 00063 std::vector<double> sum_clsize; 00064 std::ifstream *infile; 00065 00066 RPCSynchronizer* _rpcSync; 00067 00068 CLHEP::HepRandomEngine* rndEngine; 00069 CLHEP::RandFlat* flatDistribution; 00070 CLHEP::RandPoissonQ *poissonDistribution_; 00071 }; 00072 #endif