Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:53

0001 #ifndef SimPPS_RPDigiProducer_RP_LINEAR_INDUCE_CHARGE_ON_STRIPS_H
0002 #define SimPPS_RPDigiProducer_RP_LINEAR_INDUCE_CHARGE_ON_STRIPS_H
0003 
0004 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0005 #include <vector>
0006 #include "SimPPS/RPDigiProducer/interface/RPSimTypes.h"
0007 #include "Geometry/VeryForwardRPTopology/interface/RPSimTopology.h"
0008 
0009 class RPLinearInduceChargeOnStrips {
0010 public:
0011   RPLinearInduceChargeOnStrips(const edm::ParameterSet &params, RPDetId det_id);
0012   simromanpot::strip_charge_map Induce(const simromanpot::charge_induced_on_surface &charge_map);
0013 
0014 private:
0015   RPDetId det_id_;
0016   std::vector<double> signalCoupling_;
0017   simromanpot::strip_charge_map theStripChargeMap;
0018   RPSimTopology theRPDetTopology;
0019   int no_of_strips_;
0020   int verbosity_;
0021 };
0022 
0023 #endif