Universita' di GenovaINFN Sezione di Genova  
AIRWATCH / EUSO Genova

ETriggPars - source file

// $Id: ETriggPars.cc,v 1.3 2005/10/24 13:17:06 thea Exp $
// Author: Alessandro Thea   2005/10/18

/*****************************************************************************
 * ESAF: Euso Simulation and Analysis Framework                              *
 *                                                                           *
 *  Id: ETriggPars                                                           *
 *  Package: <packagename>                                                   *
 *  Coordinator: <coordinator>                                               *
 *                                                                           *
 *****************************************************************************/

//_____________________________________________________________________________
//
// ETriggPars
//
// <extensive class description>
//
//   Config file parameters
//   ======================
//
//   <parameter name>: <parameter description>
//   -Valid options: <available options>
//

#include "ETriggPars.hh"

ClassImp(ETriggPars)

//_____________________________________________________________________________
 ETriggPars::ETriggPars() {
    //
    // Constructor
    //
    Clear();
}

//_____________________________________________________________________________
 ETriggPars::ETriggPars( ETriggPars& other ) {
    //
    // Copy constructor
    //

    other.Copy(*this);
}

//______________________________________________________________________________
 void ETriggPars::Copy( TObject& other ) const {
//
//
//
    
    TObject::Copy(other);

    ((ETriggPars&)other).fId = fId;
    ((ETriggPars&)other).fName = fName;
}


//_____________________________________________________________________________
 ETriggPars::~ETriggPars() {
    //
    // Destructor
    //
}

//_____________________________________________________________________________
 void ETriggPars::Clear( Option_t* opt ) {
    //
    // Clear
    //
    
    fName = 0;
    fId = (ETriggerTypeIdentifier)0;
}
About Us | EUSO Official Website | Web pages created by Roberto Pesce and Alessandro Thea - Last Update Wed Nov 16 16:57:39 2005 Wed Nov 16 16:29:22 2005