source: JEM-EUSO/esaf_cc_at_lal/packages/common/root/src/ETriggPars.cc @ 114

Last change on this file since 114 was 114, checked in by moretto, 11 years ago

actual version of ESAF at CCin2p3

File size: 2.0 KB
Line 
1// $Id: ETriggPars.cc 2263 2005-10-24 13:17:06Z thea $
2// Author: Alessandro Thea   2005/10/18
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: ETriggPars                                                           *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// ETriggPars
16//
17// <extensive class description>
18//
19//   Config file parameters
20//   ======================
21//
22//   <parameter name>: <parameter description>
23//   -Valid options: <available options>
24//
25
26#include "ETriggPars.hh"
27
28ClassImp(ETriggPars)
29
30//_____________________________________________________________________________
31ETriggPars::ETriggPars() {
32    //
33    // Constructor
34    //
35    Clear();
36}
37
38//_____________________________________________________________________________
39ETriggPars::ETriggPars( ETriggPars& other ) {
40    //
41    // Copy constructor
42    //
43
44    other.Copy(*this);
45}
46
47//______________________________________________________________________________
48void ETriggPars::Copy( TObject& other ) const {
49//
50//
51//
52   
53    TObject::Copy(other);
54
55    ((ETriggPars&)other).fId = fId;
56    ((ETriggPars&)other).fName = fName;
57}
58
59
60//_____________________________________________________________________________
61ETriggPars::~ETriggPars() {
62    //
63    // Destructor
64    //
65}
66
67//_____________________________________________________________________________
68void ETriggPars::Clear( Option_t* opt ) {
69    //
70    // Clear
71    //
72   
73    fName = 0;
74    fId = (ETriggerTypeIdentifier)0;
75}
Note: See TracBrowser for help on using the repository browser.