/***************************************************************************
 *
 * $Id$
 *
 * Author: Marcelo Munhoz
 ***************************************************************************
 *
 * Description: SVT Event BASE class
 *
 ***************************************************************************
 *
 * $Log$
 **************************************************************************/
////////////////////////////////////////////////////////////////////////////
//                                                                        //
// It is a collection of StSvtHybridData objects.                         // 
// It represents the entire SVT data.                                     //
//                                                                        //
////////////////////////////////////////////////////////////////////////////

#include <iostream.h>
#include "StSvtEvent.hh"

ClassImp(StSvtEvent)

 StSvtEvent::StSvtEvent() : StSvtHybridCollection()
{
  fEventNumber = 0;
  fTriggerType = 0;
}

 StSvtEvent::StSvtEvent(char* config, int event, int trigger) : 
  StSvtHybridCollection(config)
{
  // The Same as StSvtHybridCollection, with two additional parameters: 
  //    event number and trigger type

  fEventNumber = event;
  fTriggerType = trigger;
}

 StSvtEvent::~StSvtEvent()
{}


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.