More information on this package is here.
// @(#)ClasTool/ClasBanks:$Name:  $:$Id: TRunIndex.cc,v 1.3 2007/03/01 22:27:00 holtrop Exp $
// Author:  Maurik Holtrop <http://www.physics.unh.edu/~maurik>

//____________________ 
// TRunIndex
//
// THIS NEEDS MORE DOCUMENTATION
//


#include "TRunIndex.h"

ClassImp(TRunIndex)


TRunIndex::TRunIndex(){
// default constructor
//
}

TRunIndex::~TRunIndex(){
// default destructure
//
}

TRunIndex::TRunIndex(Int_t fpRunIndexId,Int_t    fpMinRun,
		     Int_t    fpMaxRun,
		     Int_t    fpItemId,
                     Int_t    fpItemValueId,
		     const char *fpOfficer,
		     const char *fpTime,
		     const char *fpComment){
// Constructor Sets Variables 
//

  fRunIndexId  = fpRunIndexId;
  fMinRun      = fpMinRun;
  fMaxRun      = fpMaxRun;
  fItemId      = fpItemId;
  fItemValueId = fpItemValueId;
  fOfficer     = fpOfficer;
  fTime        = fpTime;
  fComment     = fpComment;

}

void TRunIndex::Set(Int_t fpRunIndexId,Int_t    fpMinRun,
		    Int_t    fpMaxRun,
		    Int_t    fpItemId,
		    Int_t    fpItemValueId,
		    const char *fpOfficer,
		    const char *fpTime,
		    const char *fpComment){
  // Sets Variables 
  //

  fRunIndexId  = fpRunIndexId;
  fMinRun      = fpMinRun;
  fMaxRun      = fpMaxRun;
  fItemId      = fpItemId;
  fItemValueId = fpItemValueId;
  fOfficer     = fpOfficer;
  fTime        = fpTime;
  fComment     = fpComment;

}



Author: Maurik Holtrop
Last update: ClasTool/ClasBanks:$Name: $:$Id: TRunIndex.cc,v 1.3 2007/03/01 22:27:00 holtrop Exp $
CopyLeft - This code is freely available.

ROOT Home page - ClasTool Class index - Class Hierarchy - Top of the page