Skip to content

Commit

Permalink
Add CAHit{Triplet,Quadruplet}EDProducer for early deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel committed Mar 14, 2017
1 parent d5fdb16 commit 21804eb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
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 21804eb

Please sign in to comment.