/* * hjdmanip.h * TFitFunction * * Created by XSpec on 01/10/2008. * Copyright 2008 __MyCompanyName__. All rights reserved. * */ // custom stream manipulators for doing cool stuff to streams! #ifndef __HJDMANIP_H__ #define __HJDMANIP_H__ #include #include #include #include #include #include #include class FPLatex { // converts floating point numbers to LaTeX compatible streams public : FPLatex(Int_t precision):fPrecision(precision){}; std::iostream& operator()(std::iostream& stream) const; private : Int_t fPrecision; ClassDef(FPLatex,0); }; #endif