laura is hosted by Hepforge, IPPP Durham
Laura++  v3r2
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauPrint.hh
Go to the documentation of this file.
1 
2 // Copyright University of Warwick 2004 - 2013.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 // Authors:
7 // Thomas Latham
8 // John Back
9 // Paul Harrison
10 
21 #ifndef LAU_PRINT
22 #define LAU_PRINT
23 
24 #include "Rtypes.h"
25 
26 #include <iosfwd>
27 
28 
29 class LauPrint {
30 
31  public:
33  LauPrint();
34 
36  virtual ~LauPrint();
37 
39 
43  void printFormat(std::ostream& stream, Double_t value) const;
44 
45  private:
47  LauPrint(const LauPrint& rhs);
48 
50  LauPrint& operator=(const LauPrint& rhs);
51 
52  ClassDef(LauPrint,0)
53 
54 };
55 
56 #endif
LauPrint()
Constructor.
Definition: LauPrint.cc:24
Class to define various output print commands.
Definition: LauPrint.hh:29
LauPrint & operator=(const LauPrint &rhs)
Copy assignment operator (not implemented)
virtual ~LauPrint()
Destructor.
Definition: LauPrint.cc:28
void printFormat(std::ostream &stream, Double_t value) const
Method to choose the printing format to a specified level of precision.
Definition: LauPrint.cc:32