Ignore:
Timestamp:
04/23/01 15:12:45 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc

    r749 r764  
    4141ClassImp(MRawRunHeader)
    4242
     43// --------------------------------------------------------------------------
     44//
     45// Default constructor. Creates array which stores the pixel assignment.
     46//
     47//
    4348MRawRunHeader::MRawRunHeader(const char *name, const char *title) : fPixAssignment(NULL)
    4449{
     
    5257}
    5358
     59// --------------------------------------------------------------------------
     60//
     61// Destructor. Deletes the 'pixel-assignment-array'
     62//
    5463MRawRunHeader::~MRawRunHeader()
    5564{
     
    5766}
    5867
     68// --------------------------------------------------------------------------
     69//
     70// Read in one run header from the binary file
     71//
    5972void MRawRunHeader::ReadEvt(istream& fin)
    6073{
     
    106119}
    107120
     121// --------------------------------------------------------------------------
     122//
     123// print run header information on *fLog
     124//
    108125void MRawRunHeader::Print(Option_t *t)
    109126{
    110     //
    111     // print run header information on screen
    112     //
    113127    *fLog << endl;
    114128    *fLog << "MagicNumber:  0x" << hex << fMagicNumber << " - " << (fMagicNumber==kMagicNumber?"OK":"Wrong!") << endl;
     
    145159}
    146160
     161// --------------------------------------------------------------------------
     162//
     163// Return the assigned pixel number for the given FADC channel
     164//
    147165UShort_t MRawRunHeader::GetPixAssignment(UShort_t i) const
    148166{
     
    151169}
    152170
     171// --------------------------------------------------------------------------
     172//
     173// return the number of pixel in this event.
     174//
    153175UShort_t MRawRunHeader::GetNumPixel() const
    154176{
Note: See TracChangeset for help on using the changeset viewer.