1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// -*- C++ -*-
//
// Package: L1ObjectKeysOnlineProdBase
// Class: L1ObjectKeysOnlineProdBase
//
/**\class L1ObjectKeysOnlineProdBase L1ObjectKeysOnlineProdBase.h CondTools/L1ObjectKeysOnlineProdBase/src/L1ObjectKeysOnlineProdBase.cc
Description: <one line class summary>
Implementation:
<Notes on implementation>
*/
//
// Original Author: Werner Man-Li Sun
// Created: Fri Aug 22 19:51:36 CEST 2008
// $Id: L1ObjectKeysOnlineProdBase.cc,v 1.1 2008/09/19 19:22:59 wsun Exp $
//
//
// system include files
// user include files
#include "CondTools/L1Trigger/interface/L1ObjectKeysOnlineProdBase.h"
#include "CondTools/L1Trigger/interface/Exception.h"
#include "CondFormats/L1TObjects/interface/L1TriggerKeyList.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyListRcd.h"
#include "FWCore/Framework/interface/EventSetup.h"
//
// class declaration
//
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
L1ObjectKeysOnlineProdBase::L1ObjectKeysOnlineProdBase(const edm::ParameterSet& iConfig)
: m_omdsReader(iConfig.getParameter<std::string>("onlineDB"),
iConfig.getParameter<std::string>("onlineAuthentication")) {
//the following line is needed to tell the framework what
// data is being produced
// The subsystemLabel is used by L1TriggerKeyOnlineProd to identify the
// L1TriggerKeys to concatenate.
auto cc = setWhatProduced(this, iConfig.getParameter<std::string>("subsystemLabel"));
//now do what ever other initialization is needed
l1TriggerKeyToken_ = cc.consumes(edm::ESInputTag("", "SubsystemKeysOnly"));
}
L1ObjectKeysOnlineProdBase::~L1ObjectKeysOnlineProdBase() {
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
//
// member functions
//
// ------------ method called to produce the data ------------
L1ObjectKeysOnlineProdBase::ReturnType L1ObjectKeysOnlineProdBase::produce(const L1TriggerKeyRcd& iRecord) {
// Get L1TriggerKey with label "SubsystemKeysOnly". Re-throw exception if
// not present.
edm::ESHandle<L1TriggerKey> subsystemKeys;
try {
subsystemKeys = iRecord.getHandle(l1TriggerKeyToken_);
} catch (l1t::DataAlreadyPresentException& ex) {
throw ex;
}
// Copy L1TriggerKey to new object.
std::unique_ptr<L1TriggerKey> pL1TriggerKey = std::make_unique<L1TriggerKey>(*subsystemKeys);
// Get object keys.
fillObjectKeys(pL1TriggerKey.get());
return pL1TriggerKey;
}
//define this as a plug-in
//DEFINE_FWK_EVENTSETUP_MODULE(L1ObjectKeysOnlineProdBase);
|