Skip to content

Commit

Permalink
cleaned up not used sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongeun committed Mar 19, 2021
1 parent e2b9158 commit 8d73184
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@
photonPFIsolationDepositsTask ,
photonPFIsolationValuesTask
)
pfPhotonIsolationSequence = cms.Sequence(pfPhotonIsolationTask)
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@
phPFIsoDepositNeutralPFBRECO,
phPFIsoDepositPUPFBRECO
)
photonPFIsolationDepositsPFBRECOSequence = cms.Sequence(photonPFIsolationDepositsPFBRECOTask)
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,4 @@
phPFIsoValueNeutral04PFIdPFBRECO,
phPFIsoValuePU04PFIdPFBRECO
)
photonPFIsolationValuesPFBRECOSequence = cms.Sequence(photonPFIsolationValuesPFBRECOTask)

2 changes: 0 additions & 2 deletions CommonTools/ParticleFlow/python/pfTaus_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@
pfTausDiscriminationByDecayModeFinding ,
pfTausDiscriminationByIsolation
)
pfTausBaseSequence = cms.Sequence(pfTausBaseTask)

# Associate track to pfJets
pfJetTracksAssociatorAtVertex = ak4PFJetTracksAssociatorAtVertex.clone(
Expand All @@ -135,7 +134,6 @@
pfTauPileUpVertices ,
pfTauTagInfoProducer
)
pfTausPreSequence = cms.Sequence(pfTausPreTask)

# Select taus from given collection that pass cloned discriminants
pfTaus = pfTauSelector.clone(
Expand Down
2 changes: 1 addition & 1 deletion CommonTools/ParticleFlow/python/pfType1MET_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
pfType1METChainTask = cms.Task( ak4PFL2L3CorrectorChain , pfType1MET )
pfType1METChain = cms.Sequence( pfType1METChainTask )

pfCorMETTask = cms.Task( pfRawMET , pfType1METChain )
pfCorMETTask = cms.Task( pfRawMET , pfType1METChainTask )
pfCorMET = cms.Sequence( pfCorMETTask )
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
)
)

phPFIsoDepositCharged.ExtractorPSet.DR_Veto = cms.double(0)
phPFIsoDepositChargedAll.ExtractorPSet.DR_Veto = cms.double(0)
phPFIsoDepositNeutral.ExtractorPSet.DR_Veto = cms.double(0)
phPFIsoDepositPU.ExtractorPSet.DR_Veto = cms.double(0)
phPFIsoDepositCharged.ExtractorPSet.DR_Veto = 0
phPFIsoDepositChargedAll.ExtractorPSet.DR_Veto = 0
phPFIsoDepositNeutral.ExtractorPSet.DR_Veto = 0
phPFIsoDepositPU.ExtractorPSet.DR_Veto = 0

photonPFIsolationDepositsTask = cms.Task(
phPFIsoDepositCharged,
Expand All @@ -37,4 +37,3 @@
phPFIsoDepositNeutral,
phPFIsoDepositPU
)
photonPFIsolationDepositsSequence = cms.Sequence(photonPFIsolationDepositsTask)
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,3 @@
phPFIsoValueNeutral04PFId,
phPFIsoValuePU04PFId
)
photonPFIsolationValuesSequence = cms.Sequence(photonPFIsolationValuesTask)

0 comments on commit 8d73184

Please sign in to comment.