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
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
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
CalibTracker
SiStripESProducers
src
SiStripNoiseESSource.cc
Go to the documentation of this file.
1
#include "
CalibTracker/SiStripESProducers/interface/SiStripNoiseESSource.h
"
2
#include "
FWCore/MessageLogger/interface/MessageLogger.h
"
3
#include "
DataFormats/SiStripCommon/interface/SiStripConstants.h
"
4
#include "
CondFormats/SiStripObjects/interface/SiStripNoises.h
"
5
#include "
CondFormats/DataRecord/interface/SiStripNoisesRcd.h
"
6
#include <iostream>
7
8
using namespace
sistrip
;
9
10
// -----------------------------------------------------------------------------
11
//
12
SiStripNoiseESSource::SiStripNoiseESSource
(
const
edm::ParameterSet
&
pset
) {
13
setWhatProduced(
this
);
14
findingRecord<SiStripNoisesRcd>();
15
}
16
17
// -----------------------------------------------------------------------------
18
//
19
std::unique_ptr<SiStripNoises>
SiStripNoiseESSource::produce
(
const
SiStripNoisesRcd
&) {
20
SiStripNoises
*
noise
= makeNoise();
21
22
if
(!
noise
) {
23
edm::LogWarning
(
mlESSources_
) <<
"[SiStripNoiseESSource::"
<< __func__ <<
"]"
24
<<
" Null pointer to SiStripNoises object!"
;
25
}
26
27
std::unique_ptr<SiStripNoises> ptr(
noise
);
28
return
ptr;
29
}
30
31
// -----------------------------------------------------------------------------
32
//
33
void
SiStripNoiseESSource::setIntervalFor
(
const
edm::eventsetup::EventSetupRecordKey
&,
34
const
edm::IOVSyncValue
& iosv,
35
edm::ValidityInterval
& oValidity) {
36
edm::ValidityInterval
infinity
(iosv.
beginOfTime
(), iosv.
endOfTime
());
37
oValidity =
infinity
;
38
}
SiStripNoiseESSource.h
MessageLogger.h
SiStripNoises
Definition:
SiStripNoises.h:25
SiStripNoiseESSource::setIntervalFor
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
Definition:
SiStripNoiseESSource.cc:33
edm::ValidityInterval
Definition:
ValidityInterval.h:28
SiStripNoises.h
infinity
const double infinity
Definition:
CSCChamberFitter.cc:10
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition:
MessageLogger.h:122
edm::eventsetup::EventSetupRecordKey
Definition:
EventSetupRecordKey.h:30
SiStripNoisesRcd
Definition:
SiStripCondDataRecords.h:40
SiStripNoiseESSource::produce
virtual std::unique_ptr< SiStripNoises > produce(const SiStripNoisesRcd &)
Definition:
SiStripNoiseESSource.cc:19
edm::IOVSyncValue
Definition:
IOVSyncValue.h:31
SiStripConstants.h
edm::ParameterSet
Definition:
ParameterSet.h:47
edm::IOVSyncValue::endOfTime
static const IOVSyncValue & endOfTime()
Definition:
IOVSyncValue.cc:82
gpuVertexFinder::noise
__shared__ int noise
Definition:
gpuFitVertices.h:50
sistrip::mlESSources_
static const char mlESSources_[]
Definition:
ConstantsForLogger.h:21
SiStripNoiseESSource::SiStripNoiseESSource
SiStripNoiseESSource(const edm::ParameterSet &)
Definition:
SiStripNoiseESSource.cc:12
edm::IOVSyncValue::beginOfTime
static const IOVSyncValue & beginOfTime()
Definition:
IOVSyncValue.cc:88
SiStripNoisesRcd.h
sistrip
sistrip classes
Definition:
EnsembleCalibrationLA.cc:10
muonDTDigis_cfi.pset
pset
Definition:
muonDTDigis_cfi.py:27
Generated for CMSSW Reference Manual by
1.8.16