Skip to content

Commit d04022b

Browse files
author
Timothy David Evans
committedJun 21, 2021
remove debug messages
1 parent 2957262 commit d04022b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/AddCPConjugate.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void AmpGen::AddCPConjugate( MinuitParameterSet& mps )
3232
if ( reOrIm == "Re" || reOrIm == "Im" ){
3333
auto test_particle = Particle(pname);
3434
if( std::count( forbidden.begin(), forbidden.end(), test_particle.name() ) != 0 ){
35-
INFO( "Name:" << test_particle.name() << " is forbidden" );
35+
DEBUG( "Name:" << pname << " is forbidden" );
3636
continue;
3737
}
3838
Particle test = Particle(test_particle).conj();
@@ -47,7 +47,7 @@ void AmpGen::AddCPConjugate( MinuitParameterSet& mps )
4747
}
4848
if( mps.find( new_name ) == nullptr )
4949
{
50-
INFO("Adding CP conjugated rule: " << new_name << " from " << name );
50+
DEBUG("Adding CP conjugated rule: " << new_name << " from " << name );
5151
tmp.push_back( new MinuitExpression(new_name, sgn * MinuitParameterLink(param) )) ;
5252
}
5353
}

‎src/PhaseSpace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ PhaseSpace::PhaseSpace( const EventType& type, TRandom* rand ) :
2121
{
2222
setDecay( type.motherMass(), type.masses() );
2323
if ( type.isTimeDependent() ){
24-
INFO("Generating with time-dependence");
24+
DEBUG("Generating with time-dependence");
2525
m_decayTime = ParticlePropertiesList::get( type.mother() )->lifetime();
2626
}
2727
}

0 commit comments

Comments
 (0)