1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
3 |
ecalDetIdToBeRecovered = cms.EDProducer("EcalDetIdToBeRecoveredProducer",
|
4 |
|
5 |
# SRP collections
|
6 |
ebSrFlagCollection = cms.InputTag("ecalDigis"),
|
7 |
eeSrFlagCollection = cms.InputTag("ecalDigis"),
|
8 |
|
9 |
# Integrity for xtal data
|
10 |
ebIntegrityGainErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityGainErrors"),
|
11 |
ebIntegrityGainSwitchErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityGainSwitchErrors"),
|
12 |
ebIntegrityChIdErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityChIdErrors"),
|
13 |
|
14 |
# Integrity for xtal data - EE specific (to be rivisited towards EB+EE common collection)
|
15 |
eeIntegrityGainErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityGainErrors"),
|
16 |
eeIntegrityGainSwitchErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityGainSwitchErrors"),
|
17 |
eeIntegrityChIdErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityChIdErrors"),
|
18 |
|
19 |
# Integrity Errors
|
20 |
integrityTTIdErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityTTIdErrors"),
|
21 |
integrityBlockSizeErrors = cms.InputTag("ecalEBunpacker:EcalIntegrityBlockSizeErrors"),
|
22 |
|
23 |
# output collections
|
24 |
ebDetIdToBeRecovered = cms.string("ebDetId"),
|
25 |
eeDetIdToBeRecovered = cms.string("eeDetId"),
|
26 |
ebFEToBeRecovered = cms.string("ebFE"),
|
27 |
eeFEToBeRecovered = cms.string("eeFE")
|
28 |
)
|