Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions StandardConfig/production/HighLevelReco/HighLevelReco.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,11 @@
MyGammaGammaSolutionFinder.OutputLevel = INFO
MyGammaGammaSolutionFinder.ProcessorType = "GammaGammaSolutionFinder"
MyGammaGammaSolutionFinder.Parameters = {
"InputParticleCollectionName1": ["GammaGammaCandidatePi0s"],
"InputParticleCollectionName2": ["GammaGammaCandidateEtas"],
"InputParticleCollectionName3": ["GammaGammaCandidateEtaPrimes"],
"GammaGammaCandidateCollections" : [
"GammaGammaCandidatePi0s",
"GammaGammaCandidateEtas",
"GammaGammaCandidateEtaPrimes",
],
"OutputParticleCollectionName": ["GammaGammaParticles"],
"Printing": ["0"],
}
Expand Down
9 changes: 6 additions & 3 deletions StandardConfig/production/HighLevelReco/HighLevelReco.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,12 @@


<processor name="MyGammaGammaSolutionFinder" type="GammaGammaSolutionFinder">
<parameter name="InputParticleCollectionName1" value="GammaGammaCandidatePi0s" />
<parameter name="InputParticleCollectionName2" value="GammaGammaCandidateEtas" />
<parameter name="InputParticleCollectionName3" value="GammaGammaCandidateEtaPrimes" />
<parameter name="gammagammaCandidateCollections" >

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is gammagammaCandidateCollections the correct capitalization or the one from the Gaudi configuration with GammaGammaCandidateCollections?

GammaGammaCandidatePi0s
GammaGammaCandidateEtas
GammaGammaCandidateEtaPrimes
</parameter>

<parameter name="Printing" value="0" />
<parameter name="OutputParticleCollectionName" value="GammaGammaParticles" />
</processor>
Expand Down