Skip to content

Commit

Permalink
Fixed plugin name and region extent
Browse files Browse the repository at this point in the history
  • Loading branch information
pandreetto committed Oct 17, 2024
1 parent 1e77d5f commit 4e3fea9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/DDPandoraPFANewProcessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ std::vector<double> getTrackingRegionExtent(){



extent[0]=0.1; ///FIXME! CLIC-specific: Inner radius was set to 0 for SiD-type detectors
extent[1]=mainDetector.constantAsDouble("tracker_region_rmax")/dd4hep::mm;
extent[2]=mainDetector.constantAsDouble("tracker_region_zmax")/dd4hep::mm;
extent.push_back(0.1);///FIXME! CLIC-specific: Inner radius was set to 0 for SiD-type detectors
extent.push_back(mainDetector.constantAsDouble("tracker_region_rmax")/dd4hep::mm);
extent.push_back(mainDetector.constantAsDouble("tracker_region_zmax")/dd4hep::mm);

return extent;

Expand Down Expand Up @@ -300,7 +300,7 @@ pandora::StatusCode DDPandoraPFANewProcessor::RegisterUserComponents() const
PANDORA_RETURN_RESULT_IF(pandora::STATUS_CODE_SUCCESS, !=, LCContent::RegisterBasicPlugins(*m_pPandora));

PANDORA_RETURN_RESULT_IF(pandora::STATUS_CODE_SUCCESS, !=, PandoraApi::RegisterAlgorithmFactory(*m_pPandora,
"ConeClustering", new ParConeClusteringAlgorithmFactory));
"ParConeClustering", new ParConeClusteringAlgorithmFactory));

if(m_settings.m_useDD4hepField)
{
Expand Down

0 comments on commit 4e3fea9

Please sign in to comment.