|
10 | 10 | trackAssociatorByHitsForConversionValidation.Cut_RecoToSim = 0.5 |
11 | 11 |
|
12 | 12 | from CommonTools.RecoAlgos.trackingParticleRefSelector_cfi import trackingParticleRefSelector as _trackingParticleRefSelector |
13 | | -tpSelecForEfficiency = _trackingParticleRefSelector.clone() |
14 | | -tpSelecForEfficiency.chargedOnly = True |
15 | | -# trackingParticleSelector.pdgId = cms.vint32() |
16 | | -tpSelecForEfficiency.tip = 120 |
17 | | -tpSelecForEfficiency.lip = 280 |
18 | | -tpSelecForEfficiency.signalOnly = False |
19 | | -tpSelecForEfficiency.minRapidity = -2.5 |
20 | | -tpSelecForEfficiency.ptMin = 0.3 |
21 | | -tpSelecForEfficiency.maxRapidity = 2.5 |
22 | | -tpSelecForEfficiency.minHit = 0 |
23 | | - |
24 | | - |
25 | | -tpSelecForFakeRate = _trackingParticleRefSelector.clone() |
26 | | -tpSelecForFakeRate.chargedOnly = True |
27 | | -# trackingParticleSelector.pdgId = cms.vint32() |
28 | | -tpSelecForFakeRate.tip = 120 |
29 | | -tpSelecForFakeRate.lip = 280 |
30 | | -tpSelecForFakeRate.signalOnly = False |
31 | | -tpSelecForFakeRate.minRapidity = -2.5 |
32 | | -tpSelecForFakeRate.ptMin = 0. |
33 | | -tpSelecForFakeRate.maxRapidity = 2.5 |
34 | | -tpSelecForFakeRate.minHit = 0 |
| 13 | +tpSelecForEfficiency = _trackingParticleRefSelector.clone( |
| 14 | + chargedOnly = True, |
| 15 | + # trackingParticleSelector.pdgId = cms.vint32() |
| 16 | + tip = 120, |
| 17 | + lip = 280, |
| 18 | + signalOnly = False, |
| 19 | + minRapidity = -2.5, |
| 20 | + ptMin = 0.3, |
| 21 | + maxRapidity = 2.5, |
| 22 | + minHit = 0 |
| 23 | +) |
35 | 24 |
|
| 25 | +tpSelecForFakeRate = _trackingParticleRefSelector.clone( |
| 26 | + chargedOnly = True, |
| 27 | + # trackingParticleSelector.pdgId = cms.vint32() |
| 28 | + tip = 120, |
| 29 | + lip = 280, |
| 30 | + signalOnly = False, |
| 31 | + minRapidity = -2.5, |
| 32 | + ptMin = 0.0, |
| 33 | + maxRapidity = 2.5, |
| 34 | + minHit = 0 |
| 35 | +) |
36 | 36 |
|
37 | 37 |
|
38 | 38 | from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer |
|
0 commit comments