CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/SimMuon/RPCDigitizer/src/RPCSimAverageNoiseEff.h

Go to the documentation of this file.
00001 #ifndef RPCDigitizer_RPCSimAverageNoiseEff_h
00002 #define RPCDigitizer_RPCSimAverageNoiseEff_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 #include "SimMuon/RPCDigitizer/src/RPCSimSetUp.h"
00021 
00022 class RPCGeometry;
00023 //class RPCSimSetUp;
00024 
00025 namespace CLHEP {
00026   class HepRandomEngine;
00027   class RandFlat;
00028   class RandPoisson;
00029 }
00030 
00031 class RPCSimAverageNoiseEff : public RPCSim
00032 {
00033  public:
00034   RPCSimAverageNoiseEff(const edm::ParameterSet& config);
00035   ~RPCSimAverageNoiseEff();
00036 
00037   void simulate(const RPCRoll* roll,
00038                 const edm::PSimHitContainer& rpcHits);
00039 
00040   void simulateNoise(const RPCRoll*);
00041 
00042   void setRandomEngine(CLHEP::HepRandomEngine& eng);
00043 
00044   int getClSize(float posX);
00045 
00046  private:
00047   void init(){};
00048  private:
00049   double aveEff;
00050   double aveCls;
00051   double resRPC;
00052   double timOff;
00053   double dtimCs;
00054   double resEle;
00055   double sspeed;
00056   double lbGate;
00057   bool rpcdigiprint;
00058   
00059   int N_hits;
00060   int nbxing;
00061   double rate;
00062   double gate;
00063   double frate;
00064 
00065   std::map< int, std::vector<double> > clsMap;
00066   std::vector<double> sum_clsize;
00067   std::ifstream *infile;
00068  
00069   RPCSynchronizer* _rpcSync;
00070 
00071   //Defining the engines in the constructor and the method
00072   //CLHEP::HepRandomEngine* rndEngine;
00073   CLHEP::RandFlat* flatDistribution;
00074   //Adding a second flatDistribution, since it was redefined 
00075   //in a method with different interval
00076   CLHEP::RandFlat* flatDistribution2;
00077   CLHEP::RandPoissonQ *poissonDistribution_;
00078 
00079 };
00080 #endif