Universita' di GenovaINFN Sezione di Genova  
AIRWATCH / EUSO Genova

EAFee - source file

// ESAF : Euso Simulation and Analysis Framework
// $Id: EAFee.cc,v 1.3 2004/06/20 09:28:14 thea Exp $
//  created May, 23 2004

#include "EAFee.hh"

ClassImp(EAFee)

//_____________________________________________________________________________
EAFee::EAFee() {
    // ctor

    fGtu       = -1;
    fMCId      = -1;
    fFEId      = -1;
    fDyCharge  = 0;
    fCherTrigg = 0;
}

//_____________________________________________________________________________
EAFee::EAFee(const EAFee& other) : TObject() {
    // copy ctor
    
   
    ((EAFee&)other).Copy(*this); 
    
}
//_____________________________________________________________________________
EAFee::~EAFee() {
    // dtor
}

//_____________________________________________________________________________
 void EAFee::Copy( TObject& obj) const {
    // copy this afee to obj 
    
    TObject::Copy(obj);

    EAFee& afee = (EAFee&)obj;
    afee.fGtu       = fGtu;
    afee.fMCId      = fMCId;
    afee.fFEId      = fFEId;
    afee.fDyCharge  = fDyCharge;
    afee.fCherTrigg = fCherTrigg;
}

About Us | EUSO Official Website | Web pages created by Roberto Pesce and Alessandro Thea - Last Update 14-May-2005 21:31