Skip to content

Commit

Permalink
Use parameter naming consistent with ACTSTracking package.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrizka committed May 22, 2024
1 parent d346143 commit a4cf195
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/FilterTracks.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,19 @@ FilterTracks::FilterTracks() : Processor("FilterTracks") {
registerProcessorParameter("MinPt", "Minimum transverse momentum", _MinPt,
_MinPt);

registerInputCollection(LCIO::TRACK, "InTrackCollection",
"Name of the input collection", _InTrackCollection,
_InTrackCollection);
registerInputCollection( LCIO::TRACK,
"InputTrackCollectionName" ,
"Name of the input collection",
_InTrackCollection,
_InTrackCollection
);

registerOutputCollection( LCIO::TRACK,
"OutputTrackCollectionName" ,
"Name of output collection",
_OutTrackCollection,
_OutTrackCollection
);

registerOutputCollection(LCIO::TRACK, "OutTrackCollection",
"Name of output collection", _OutTrackCollection,
Expand Down

0 comments on commit a4cf195

Please sign in to comment.