|
//____________________________________________________________________ // // // //____________________________________________________________________ // $Id: BrTileCent.cxx,v 1.2 2001/06/25 14:26:27 cholm Exp $ // $Author: cholm $ // $Date: 2001/06/25 14:26:27 $ // $Copyright: 2001 BRAHMS Collaboration <brahmlib@rhic.bnl.gov> // #ifndef BRAT_BrTileCent #include "BrTileCent.h" #endif #ifndef WIN32 #include <iostream> #include <iomanip.h> #else #include <iostream.h> #include <iomanip.h> #endif //____________________________________________________________________ ClassImp(BrTileCent); //____________________________________________________________________ BrTileCent::BrTileCent() { // Default constructor fLowCut = fHighCut = 0; } //____________________________________________________________________ BrTileCent::BrTileCent(const Char_t* name, const Char_t* title) : BrDataObject(name, title) { // Default constructor fLowCut = fHighCut = 0; } //____________________________________________________________________ void BrTileCent::Print(Option_t* option) const { cout << "Centrality object: High: " << setw(3) << Int_t(100 * fHighCut) << "% Low: " << setw(3) << Int_t(100 * fLowCut) << "%" << endl; } //____________________________________________________________________ // // $Log: BrTileCent.cxx,v $ // Revision 1.2 2001/06/25 14:26:27 cholm // Made Print conform to TObject // // Revision 1.1.1.1 2001/06/21 14:54:59 hagel // Initial revision of brat2 // // Revision 1.2 2001/02/08 15:12:13 cholm // Fixed a minor bug in BrTileCalibration // Fleshed out BrtileCent. // Finalised BrTileCentCalModule. // Finalised BrTileCentModule. // Minor bug fixes to BrTileRdoModule. // // Revision 1.1 2001/01/29 20:51:40 cholm // Added a data class for storing the centrality of an event in a BrEventNode, // plus a module to find the values, and a module to do the releveant // calibrations. None of them have been tested yet. // // |
||||||
This page automatically generated by script docBrat by Christian Holm |
Copyright ; 2002 BRAHMS Collaboration
<brahmlib@rcf.rhic.bnl.gov>
|