CMS 3D CMS Logo

L1TTwinMuxProducer.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: L1TwinMuxProducer
4 //
5 // L1TwinMuxProducer EDProducer
6 //
7 //
8 // Author :
9 // G. Flouris U Ioannina Feb. 2015
10 // Mod.: g Karathanasis
11 //--------------------------------------------------
12 
19 
21 
22 #include <iostream>
23 #include <iomanip>
24 #include <memory>
25 
26 using namespace std;
27 
28 //class L1TTwinMuxProducer: public edm::one::EDProducer<edm::one::SharedResources>
29 //class L1TTwinMuxProducer: public edm::EDProducer
31 public:
33  ~L1TTwinMuxProducer() override {}
34  void produce(edm::Event& e, const edm::EventSetup& c) override;
35 
36 private:
37  //L1TTwinMuxAlgorithm * m_l1tma;
38  // std::unique_ptr<L1TTwinMuxAlgorithm> m_l1tma(new L1TTwinMuxAlgorithm());
39  edm::EDGetToken m_dtdigi, m_dtthetadigi, m_rpcsource;
42 };
43 
45  //m_l1tma = new L1TTwinMuxAlgorithm();
46  // std::unique_ptr<L1TTwinMuxAlgorithm> m_l1tma(new L1TTwinMuxAlgorithm());
47 
48  m_dtdigi = consumes<L1MuDTChambPhContainer>(pset.getParameter<edm::InputTag>("DTDigi_Source"));
49  m_dtthetadigi = consumes<L1MuDTChambThContainer>(pset.getParameter<edm::InputTag>("DTThetaDigi_Source"));
50  m_rpcsource = consumes<RPCDigiCollection>(pset.getParameter<edm::InputTag>("RPC_Source"));
51 
52  produces<L1MuDTChambPhContainer>();
53  produces<L1MuDTChambThContainer>();
54 }
55 
57  std::unique_ptr<L1TTwinMuxAlgorithm> m_l1tma(new L1TTwinMuxAlgorithm());
59  const L1TTwinMuxParamsRcd& tmParamsRcd = c.get<L1TTwinMuxParamsRcd>();
60  tmParamsRcd.get(tmParamsHandle);
61  const L1TTwinMuxParams& tmParams = *tmParamsHandle.product();
62 
64  bool onlyRPC = tmParams.get_UseOnlyRPC();
66  bool onlyDT = tmParams.get_UseOnlyDT();
67 
68  if (onlyDT && onlyRPC) {
69  edm::LogWarning("Inconsistent configuration") << "onlyRPC and onlyDT options";
70  return;
71  }
73 
76  e.getByToken(m_dtdigi, phiDigis);
77  e.getByToken(m_dtthetadigi, thetaDigis);
78 
80  e.getByToken(m_rpcsource, rpcDigis);
81 
82  if (!phiDigis.isValid()) {
83  edm::LogWarning("Inconsistent digis") << "input DT phi digis not valid";
84  }
85 
86  //std::unique_ptr<L1MuDTChambPhContainer> l1ttmp(new L1MuDTChambPhContainer);
87  auto l1ttmp = std::make_unique<L1MuDTChambPhContainer>();
88  m_l1tma->run(phiDigis, thetaDigis, rpcDigis, c);
89  *l1ttmp = m_l1tma->get_ph_tm_output();
90  //null transfer of theta digis
91  auto l1ttmth = std::make_unique<L1MuDTChambThContainer>();
92  const std::vector<L1MuDTChambThDigi>* theta = thetaDigis->getContainer();
93  l1ttmth->setContainer(*theta);
94 
95  e.put(std::move(l1ttmp));
96  e.put(std::move(l1ttmth));
97 }
98 
L1TTwinMuxProducer::m_rpcsource
edm::EDGetToken m_rpcsource
Definition: L1TTwinMuxProducer.cc:39
L1TTwinMuxProducer::~L1TTwinMuxProducer
~L1TTwinMuxProducer() override
Definition: L1TTwinMuxProducer.cc:33
EDProducer.h
L1TTwinMuxParams::get_UseOnlyRPC
int get_UseOnlyRPC() const
Definition: L1TTwinMuxParams.h:60
L1TTwinMuxProducer
Definition: L1TTwinMuxProducer.cc:30
edm::Handle< L1MuDTChambPhContainer >
MakerMacros.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
L1TTwinMuxProducer::produce
void produce(edm::Event &e, const edm::EventSetup &c) override
Definition: L1TTwinMuxProducer.cc:56
edm::ESHandle< L1TTwinMuxParams >
theta
Geom::Theta< T > theta() const
Definition: Basic3DVectorLD.h:150
edm::LogWarning
Definition: MessageLogger.h:141
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
L1MuDTChambThContainer::getContainer
The_Container const * getContainer() const
Definition: L1MuDTChambThContainer.cc:41
edm::stream::EDProducer
Definition: EDProducer.h:38
edm::EventSetup
Definition: EventSetup.h:57
L1TTwinMuxParamsRcd
Definition: L1TTwinMuxParamsRcd.h:14
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
L1TTwinMuxProducer::L1TTwinMuxProducer
L1TTwinMuxProducer(const edm::ParameterSet &pset)
Definition: L1TTwinMuxProducer.cc:44
edm::EDGetToken
Definition: EDGetToken.h:35
L1TTwinMuxAlgorithm
Definition: L1TTwinMuxAlgorithm.h:33
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
edm::eventsetup::EventSetupRecordImplementation::get
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
Definition: EventSetupRecordImplementation.h:74
ConsumesCollector.h
ParameterSet.h
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
L1TTwinMuxParams::get_UseOnlyDT
int get_UseOnlyDT() const
Definition: L1TTwinMuxParams.h:63
edm::InputTag
Definition: InputTag.h:15
L1TTwinMuxAlgorithm.h
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
L1TTwinMuxProducer::tmParamsHandle
edm::ESHandle< L1TTwinMuxParams > tmParamsHandle
Event Setup Handler.
Definition: L1TTwinMuxProducer.cc:41
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
L1TTwinMuxParams
Definition: L1TTwinMuxParams.h:19