|
Laura++
3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
|
Go to the documentation of this file.
46 char* string = new char[100];
48 if ( TMath::Abs( value ) < 1e-30 ) {
49 sprintf( string, "%5.3f", 0.0 );
50 } else if ( TMath::Abs( value ) < 0.01 ) {
51 sprintf( string, "%5.3e", value );
52 } else if ( TMath::Abs( value ) < 0.1 ) {
53 sprintf( string, "%5.3f", value );
55 sprintf( string, "%5.3f", value );
Double_t value() const The value of the parameter.
virtual ~LauPrint() Destructor.
File containing declaration of LauPrint class and LauOutputLevel enum.
void printFormat(std::ostream &stream, Double_t value) const Method to choose the printing format to a specified level of precision.
|