BRAT 2.4.5
Class index
Full class index
brahmlib
BRAHMS
ROOT page
//____________________________________________________________________
// 
// 
// 

//____________________________________________________________________
//
// $Id: BrTpcHit.cxx,v 1.1.1.1 2001/06/21 14:55:03 hagel Exp $
// $Author: hagel $
// $Date: 2001/06/21 14:55:03 $
// $Copyright: (C) 2001 BRAHMS Collaboration <brahmlib@rhic.bnl.gov>
//
#ifndef BRAT_BrTpcHit
#include "BrTpcHit.h"
#endif
#ifndef WIN32
#include <iostream>
#include <iomanip>
#else
#include <iostream.h>
#include <iomanip.h>
#endif

//____________________________________________________________________

ClassImp(BrTpcHit);

//____________________________________________________________________
 BrTpcHit::BrTpcHit()
  : BrHit()
{
  // CTOR
  fAdcMax = 0;
  fAdcSum = 0;    
  fRow = 0;       
  fStatus = 0;    
  fUsed = 0;      
  fQuality = 0;   
  fClusterId = 0; 
}

//____________________________________________________________________
 BrTpcHit::~BrTpcHit()
{
  // DTOR - currently empty
}

//____________________________________________________________________
 void BrTpcHit::Print(Option_t* option = "") const
{
  // Print out the position and error and tpc specific stuff 
  cout << "Tpc hit - id : " << fClusterId << endl;
  BrHit::Print(option);
  cout << "Row :       "   << setw(10) << fRow << endl
       << "Adc - Max : "   << setw(10) << fAdcMax 
       << " - Sum :      " << setw(10) << fAdcSum << endl
       << "Pad width : "   << setw(10) << fPadWidth 
       << " Time width : " << setw(10) << fTimeWidth << endl
       << "Status :    "   << setw(10) << fStatus 
       << " Quality :    " << setw(10) << fQuality << endl
       << "Number of times used in tracking : " << fUsed << endl;
}

//____________________________________________________________________
//
// $Log: BrTpcHit.cxx,v $
// Revision 1.1.1.1  2001/06/21 14:55:03  hagel
// Initial revision of brat2
//
// Revision 1.2  2001/06/17 17:29:40  pchristi
// Near final version. A little cosmetics is still needed.
//
// Revision 1.1  2001/05/29 14:20:34  pchristi
// Initial import of new Tpc 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