Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTEcalPhiSymFilter(**kwargs):
0004   mod = cms.EDFilter('HLTEcalPhiSymFilter',
0005     barrelDigiCollection = cms.InputTag('ecalDigis', 'ebDigis'),
0006     endcapDigiCollection = cms.InputTag('ecalDigis', 'eeDigis'),
0007     barrelUncalibHitCollection = cms.InputTag('ecalUncalibHit', 'EcalUncalibRecHitsEB'),
0008     endcapUncalibHitCollection = cms.InputTag('ecalUncalibHit', 'EcalUncalibRecHitsEE'),
0009     barrelHitCollection = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0010     endcapHitCollection = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0011     statusThreshold = cms.uint32(3),
0012     useRecoFlag = cms.bool(False),
0013     ampCut_barrelP = cms.vdouble(
0014       8,
0015       8,
0016       8,
0017       8,
0018       8,
0019       8,
0020       8,
0021       8,
0022       8,
0023       8,
0024       8,
0025       8,
0026       8,
0027       8,
0028       8,
0029       8,
0030       8,
0031       8,
0032       8,
0033       8,
0034       8,
0035       8,
0036       8,
0037       8,
0038       8,
0039       8,
0040       8,
0041       8,
0042       8,
0043       8,
0044       8,
0045       8,
0046       8,
0047       8,
0048       8,
0049       8,
0050       8,
0051       8,
0052       8,
0053       8,
0054       8,
0055       8,
0056       8,
0057       8,
0058       8,
0059       8,
0060       8,
0061       8,
0062       8,
0063       8,
0064       8,
0065       8,
0066       8,
0067       8,
0068       8,
0069       8,
0070       8,
0071       8,
0072       8,
0073       8,
0074       8,
0075       8,
0076       8,
0077       8,
0078       8,
0079       8,
0080       8,
0081       8,
0082       8,
0083       8,
0084       8,
0085       8,
0086       8,
0087       8,
0088       8,
0089       8,
0090       8,
0091       8,
0092       8,
0093       8,
0094       8,
0095       8,
0096       8,
0097       8,
0098       8
0099     ),
0100     ampCut_barrelM = cms.vdouble(
0101       8,
0102       8,
0103       8,
0104       8,
0105       8,
0106       8,
0107       8,
0108       8,
0109       8,
0110       8,
0111       8,
0112       8,
0113       8,
0114       8,
0115       8,
0116       8,
0117       8,
0118       8,
0119       8,
0120       8,
0121       8,
0122       8,
0123       8,
0124       8,
0125       8,
0126       8,
0127       8,
0128       8,
0129       8,
0130       8,
0131       8,
0132       8,
0133       8,
0134       8,
0135       8,
0136       8,
0137       8,
0138       8,
0139       8,
0140       8,
0141       8,
0142       8,
0143       8,
0144       8,
0145       8,
0146       8,
0147       8,
0148       8,
0149       8,
0150       8,
0151       8,
0152       8,
0153       8,
0154       8,
0155       8,
0156       8,
0157       8,
0158       8,
0159       8,
0160       8,
0161       8,
0162       8,
0163       8,
0164       8,
0165       8,
0166       8,
0167       8,
0168       8,
0169       8,
0170       8,
0171       8,
0172       8,
0173       8,
0174       8,
0175       8,
0176       8,
0177       8,
0178       8,
0179       8,
0180       8,
0181       8,
0182       8,
0183       8,
0184       8,
0185       8
0186     ),
0187     ampCut_endcapP = cms.vdouble(
0188       12,
0189       12,
0190       12,
0191       12,
0192       12,
0193       12,
0194       12,
0195       12,
0196       12,
0197       12,
0198       12,
0199       12,
0200       12,
0201       12,
0202       12,
0203       12,
0204       12,
0205       12,
0206       12,
0207       12,
0208       12,
0209       12,
0210       12,
0211       12,
0212       12,
0213       12,
0214       12,
0215       12,
0216       12,
0217       12,
0218       12,
0219       12,
0220       12,
0221       12,
0222       12,
0223       12,
0224       12,
0225       12,
0226       12
0227     ),
0228     ampCut_endcapM = cms.vdouble(
0229       12,
0230       12,
0231       12,
0232       12,
0233       12,
0234       12,
0235       12,
0236       12,
0237       12,
0238       12,
0239       12,
0240       12,
0241       12,
0242       12,
0243       12,
0244       12,
0245       12,
0246       12,
0247       12,
0248       12,
0249       12,
0250       12,
0251       12,
0252       12,
0253       12,
0254       12,
0255       12,
0256       12,
0257       12,
0258       12,
0259       12,
0260       12,
0261       12,
0262       12,
0263       12,
0264       12,
0265       12,
0266       12,
0267       12
0268     ),
0269     phiSymBarrelDigiCollection = cms.string('phiSymEcalDigisEB'),
0270     phiSymEndcapDigiCollection = cms.string('phiSymEcalDigisEE'),
0271     mightGet = cms.optional.untracked.vstring
0272   )
0273   for k,v in kwargs.items():
0274     setattr(mod, k, v)
0275   return mod