Skip to content

Commit

Permalink
Merge pull request #17918 from makortel/earlyDeleteCA
Browse files Browse the repository at this point in the history
Add CA hit ntuplets for early deletion
  • Loading branch information
cmsbuild committed Mar 16, 2017
2 parents 31b2a25 + 21804eb commit 4af5d48
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -21,13 +21,15 @@ def _branchName(productType, moduleLabel, instanceLabel=""):
products[name].append(_branchName("RegionsSeedingHitSets", name))
if module.produceIntermediateHitTriplets:
products[name].append(_branchName("IntermediateHitTriplets", name))
# LayerHitMapCache of the doublets is forwarded to both
# products, hence the dependency
depends[name].append(module.doublets.getModuleLabel())
elif cppType in ["MultiHitFromChi2EDProducer"]:
products[name].extend([
_branchName("RegionsSeedingHitSets", name),
_branchName("BaseTrackerRecHitsOwned", name)
])
elif cppType == "PixelQuadrupletEDProducer":
elif cppType in ["PixelQuadrupletEDProducer", "CAHitQuadrupletEDProducer", "CAHitTripletEDProducer"]:
products[name].append(_branchName("RegionsSeedingHitSets", name))
elif cppType == "PixelQuadrupletMergerEDProducer":
products[name].extend([
Expand Down

0 comments on commit 4af5d48

Please sign in to comment.