BRAT 2.4.5
Class index
Full class index
brahmlib
BRAHMS
ROOT page
//____________________________________________________________________
//
// Class to store the centrality as determind from the SMA data 
//

//____________________________________________________________________
// $Id: BrSiCent.cxx,v 1.2 2001/06/25 14:26:21 cholm Exp $
// $Author: cholm $
// $Date: 2001/06/25 14:26:21 $
// $Copyright: 2001 BRAHMS Collaboration <brahmlib@rhic.bnl.gov>
//
#ifndef BRAT_BrSiCent
#include "BrSiCent.h"
#endif
#ifndef WIN32
#include <iostream>
#include <iomanip.h>
#else
#include <iostream.h>
#include <iomanip.h>
#endif 
//____________________________________________________________________
ClassImp(BrSiCent);

//____________________________________________________________________
 BrSiCent::BrSiCent()
{
  // Default constructor
  fLowCut = fHighCut = 0;
}

//____________________________________________________________________
 BrSiCent::BrSiCent(const Char_t* name, const Char_t* title)
  : BrDataObject(name, title)
{
  // Default constructor
  fLowCut = fHighCut = 0;
}

//____________________________________________________________________
 void BrSiCent::Print(Option_t* option) const
{
  cout << "Centrality object: High: " 
       << setw(3) << Int_t(100 * fHighCut) << "%  Low: "  
       << setw(3) << Int_t(100 * fLowCut) << "%" << endl;
}

//____________________________________________________________________
//
// $Log: BrSiCent.cxx,v $
// Revision 1.2  2001/06/25 14:26:21  cholm
// Made Print conform to TObject
//
// Revision 1.1.1.1  2001/06/21 14:54:59  hagel
// Initial revision of brat2
//
// Revision 1.1  2001/04/19 15:11:55  cholm
// Added centrality classes for SMA
//
//

This page automatically generated by script docBrat by Christian Holm

Copyright ; 2002 BRAHMS Collaboration <brahmlib@rcf.rhic.bnl.gov>
Last Update on by

Validate HTML
Validate CSS