Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
L1Trigger
RegionalCaloTrigger
interface
L1RCTTPGProvider.h
Go to the documentation of this file.
1
// -*- C++ -*-
2
//
3
// Package: L1RCTTPGProvider
4
// Class: L1RCTTPGProvider
5
//
14
//
15
// Original Author: Michail Bachtis
16
// Created: Tue Mar 10 18:29:22 CDT 2009
17
//
18
//
19
20
// system include files
21
#include <memory>
22
#include <atomic>
23
24
// user include files
25
#include "
FWCore/Framework/interface/global/EDProducer.h
"
26
#include "
FWCore/Framework/interface/Frameworkfwd.h
"
27
28
#include "
FWCore/Framework/interface/Event.h
"
29
#include "
FWCore/Framework/interface/MakerMacros.h
"
30
#include "
FWCore/ParameterSet/interface/ParameterSet.h
"
31
32
#include "
DataFormats/EcalDigi/interface/EcalDigiCollections.h
"
33
#include "
DataFormats/HcalDigi/interface/HcalDigiCollections.h
"
34
35
//
36
// class decleration
37
//
38
39
class
L1RCTTPGProvider
:
public
edm::global::EDProducer
<> {
40
public
:
41
explicit
L1RCTTPGProvider
(
const
edm::ParameterSet
&);
42
~L1RCTTPGProvider
()
override
;
43
44
private
:
45
void
produce
(
edm::StreamID
,
edm::Event
&,
const
edm::EventSetup
&)
const override
;
46
47
// ----------member data ---------------------------
48
edm::EDGetTokenT<EcalTrigPrimDigiCollection>
ecalTPG_
;
49
edm::EDGetTokenT<HcalTrigPrimDigiCollection>
hcalTPG_
;
50
mutable
std::atomic<bool>
useHcalCosmicTiming
;
51
mutable
std::atomic<bool>
useEcalCosmicTiming
;
52
int
preSamples
;
53
int
postSamples
;
54
int
hfShift
;
55
int
hbShift
;
56
};
L1RCTTPGProvider::postSamples
int postSamples
Definition:
L1RCTTPGProvider.h:53
edm::StreamID
Definition:
StreamID.h:30
Event.h
L1RCTTPGProvider::preSamples
int preSamples
Definition:
L1RCTTPGProvider.h:52
L1RCTTPGProvider::L1RCTTPGProvider
L1RCTTPGProvider(const edm::ParameterSet &)
Definition:
L1RCTTPGProvider.cc:5
L1RCTTPGProvider::hcalTPG_
edm::EDGetTokenT< HcalTrigPrimDigiCollection > hcalTPG_
Definition:
L1RCTTPGProvider.h:49
edm::EDGetTokenT
Definition:
EDGetToken.h:37
Frameworkfwd.h
L1RCTTPGProvider::produce
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
Definition:
L1RCTTPGProvider.cc:48
ParameterSet.h
L1RCTTPGProvider::useHcalCosmicTiming
std::atomic< bool > useHcalCosmicTiming
Definition:
L1RCTTPGProvider.h:50
HcalDigiCollections.h
L1RCTTPGProvider::~L1RCTTPGProvider
~L1RCTTPGProvider() override
Definition:
L1RCTTPGProvider.cc:38
EcalDigiCollections.h
edm::EventSetup
Definition:
EventSetup.h:56
L1RCTTPGProvider::ecalTPG_
edm::EDGetTokenT< EcalTrigPrimDigiCollection > ecalTPG_
Definition:
L1RCTTPGProvider.h:48
L1RCTTPGProvider
Definition:
L1RCTTPGProvider.h:39
edm::global::EDProducer
Definition:
EDProducer.h:32
L1RCTTPGProvider::hbShift
int hbShift
Definition:
L1RCTTPGProvider.h:55
EDProducer.h
L1RCTTPGProvider::hfShift
int hfShift
Definition:
L1RCTTPGProvider.h:54
edm::ParameterSet
Definition:
ParameterSet.h:48
edm::Event
Definition:
Event.h:73
MakerMacros.h
L1RCTTPGProvider::useEcalCosmicTiming
std::atomic< bool > useEcalCosmicTiming
Definition:
L1RCTTPGProvider.h:51
Generated for CMSSW Reference Manual by
1.8.14