Universita' di GenovaINFN Sezione di Genova  
AIRWATCH / EUSO Genova

RecoHeader - source file

// $Id: RecoHeader.cc,v 1.1 2005/01/05 13:08:20 pesce Exp $
// Author: R.Pesce   2005/01/04

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

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

#include "RecoHeader.hh"

ClassImp(RecoHeader)

//_____________________________________________________________________________
 RecoHeader::RecoHeader() {
    //
    // Constructor
    //
    fNum = -1;
    fRun = -1;
}

//_____________________________________________________________________________
 RecoHeader::~RecoHeader() {
    //
    // Destructor
    //
    fNum = -1;
    fRun = -1;
}


//_____________________________________________________________________________
 RecoHeader::RecoHeader( const RecoHeader& other ) {
    //
    // Copy Constructor
    //
    other.Copy( *this );
}


//_____________________________________________________________________________
 void RecoHeader::Copy( TObject& other ) const {
    //
    // Copy to a new object
    //
    TObject::Copy( other );

    ((RecoHeader&)other).fNum = fNum;
    ((RecoHeader&)other).fRun = fRun;
}

//_____________________________________________________________________________
 void RecoHeader::Clear() {
    fNum = -1;
    fRun = -1;
}
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