Skip to content

Commit

Permalink
Reorder configuration step.
Browse files Browse the repository at this point in the history
  • Loading branch information
pslocum committed Jul 29, 2024
1 parent a349b25 commit 14dd390
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/Kassiopeia/LMCCyclotronRadiationExtractor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ namespace locust
fSampleIndex( 0 ),
fInterface( KLInterfaceBootstrapper::get_instance()->GetInterface() )
{
Configure();
}

CyclotronRadiationExtractor::CyclotronRadiationExtractor(const CyclotronRadiationExtractor &aCopy) : KSComponent(),
Expand All @@ -32,7 +31,6 @@ namespace locust
fSampleIndex( aCopy.fSampleIndex ),
fInterface( aCopy.fInterface )
{
Configure();
}

CyclotronRadiationExtractor* CyclotronRadiationExtractor::Clone() const
Expand Down Expand Up @@ -61,6 +59,7 @@ namespace locust
void CyclotronRadiationExtractor::SetP8Phase (int P8Phase )
{
fInterface->fProject8Phase = P8Phase;
Configure();
}

bool CyclotronRadiationExtractor::UpdateTrackProperties( Kassiopeia::KSParticle &aFinalParticle, unsigned index, bool bStart )
Expand Down

0 comments on commit 14dd390

Please sign in to comment.