21 #include <basic/Tracer.hh>
27 #include <ObjexxFCL/format.hh>
34 #include <utility/pointer/ReferenceCount.hh>
36 #include <utility/vector1.hh>
39 static basic::Tracer
TR(
"protocols.moves.TrialMover");
45 using namespace ObjexxFCL::fmt;
51 MoverStatistics::~MoverStatistics() {}
64 if (
TR.Trace.visible() ) {
65 std::ostringstream outstring;
67 for (
Size ii = 0; ii < score_.size(); ++ii ) {
68 outstring << F( 9, 3, score_[ ii ] ) <<
" ";
70 outstring << F( 9, 3, mc->last_accepted_score() ) <<
" " << F( 9, 3, mc->lowest_score() ) <<
" " << type <<
" ";
72 switch( mc->mc_accepted() ) {
73 case 0: outstring <<
"reject ";
break;
74 case 1: outstring <<
"thermal accept ";
break;
75 case 2: outstring <<
"downhill accept ";
break;
76 case 3: outstring <<
"lowest accept ";
break;
79 TR.Trace << outstring.str() << std::endl;