BRAT 2.4.5
Class index
Full class index
brahmlib
BRAHMS
ROOT page
//____________________________________________________________________
// 
// C1 particle identification class.
// 
// 

//____________________________________________________________________
//
// $Id: BrC1Pid.cxx,v 1.3 2001/10/03 09:52:11 ouerdane Exp $
// $Author: ouerdane $
// $Date: 2001/10/03 09:52:11 $
// $Copyright: (C) 2001 BRAHMS Collaboration <brahmlib@rhic.bnl.gov>
//

#ifndef BRAT_BrC1Pid
#include "BrC1Pid.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif

#include <iostream>


//____________________________________________________________________
ClassImp(BrC1Pid);

//____________________________________________________________________
 BrC1Pid::BrC1Pid()
  : BrPid()
{
  // default contructor
  SetConfidenceLevel();  //default is -1
  SetBlobEnergy(-1);
}

//____________________________________________________________________
 void BrC1Pid::Print(Option_t* option) const 
{
  // Print information on this object. 
  // Options: A -> all info

  TString opt(option);
  opt.ToLower();

  cout << " ------ BrC1Pid ----- : "         << endl
       << "   Detector    : C1 "             << endl
       << "   Blob energy : " << fBlobEnergy << endl;
  

  if (opt.Contains("a"))
    BrPid::Print(option);
}

//____________________________________________________________________
//
// $Log: BrC1Pid.cxx,v $
// Revision 1.3  2001/10/03 09:52:11  ouerdane
// Call of BrPid constructor forgotten in implementation files
//
// Revision 1.2  2001/10/02 01:43:47  ouerdane
// Pid classes derive now from TObject, removed useless named contructor
//
// Revision 1.1  2001/09/03 17:57:58  ekman
// Added BrPid and BrC1Pid classes.
//
//

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