|
//____________________________________________________________________ // // Data class to store centrality from file multiplicity array (both // TMA and SMA) // // // $Id: BrMultCent.cxx,v 1.3 2002/03/12 13:04:27 cholm Exp $ // $Author: cholm $ // $Date: 2002/03/12 13:04:27 $ // $Copyright: (C) 2001 BRAHMS Collaboration <brahmlib@rhic.bnl.gov> // #include "BrMultCent.h" #ifndef WIN32 #include <iostream> #include <iomanip.h> #else #include <iostream.h> #include <iomanip.h> #endif //____________________________________________________________________ ClassImp(BrMultCent); //____________________________________________________________________ BrMultCent::BrMultCent() { fCent = 0; } //____________________________________________________________________ BrMultCent::BrMultCent(const Char_t* name, const Char_t* title) : BrDataObject(name, title) { fCent = 0; } //____________________________________________________________________ void BrMultCent::Print(Option_t* option) const { BrDataObject::Print(option); cout << "Centrality: " << setw(3) << fCent << endl; } //____________________________________________________________________ // // $Log: BrMultCent.cxx,v $ // Revision 1.3 2002/03/12 13:04:27 cholm // more output from Print // // Revision 1.2 2001/06/25 14:24:24 cholm // packages/ // // Revision 1.1.1.1 2001/06/21 14:55:00 hagel // Initial revision of brat2 // // Revision 1.1 2001/04/19 15:09:26 cholm // Renamed BrCent... to BrMultCent... to reduce confusion // // |
||||||
This page automatically generated by script docBrat by Christian Holm |
Copyright ; 2002 BRAHMS Collaboration
<brahmlib@rcf.rhic.bnl.gov>
|