~sophie-middleton08/maus/devel

« back to all changes in this revision

Viewing changes to src/common_cpp/DataStructure/ReconEvent.hh

  • Committer: Chris Rogers
  • Date: 2012-05-10 20:25:42 UTC
  • mfrom: (663.6.10 merge)
  • Revision ID: chris.rogers@stfc.ac.uk-20120510202542-cr294lltgh14lde0
Tags: MAUS-v0.2.2
ReleaseĀ 0.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "Rtypes.h" // ROOT
23
23
 
 
24
#include "src/common_cpp/DataStructure/TOFEvent.hh"
 
25
#include "src/common_cpp/DataStructure/SciFiEvent.hh"
 
26
#include "src/common_cpp/DataStructure/CkovEvent.hh"
 
27
#include "src/common_cpp/DataStructure/KLEvent.hh"
 
28
#include "src/common_cpp/DataStructure/EMREvent.hh"
 
29
#include "src/common_cpp/DataStructure/TriggerEvent.hh"
 
30
#include "src/common_cpp/DataStructure/GlobalEvent.hh"
 
31
 
24
32
namespace MAUS {
25
33
 
26
 
class TOFEvent {};  // placeholder for the Tof Event
27
 
 
28
 
class SciFiEvent {};  // placeholder for the SciFi Event
29
 
 
30
 
class CkovEvent {};  // placeholder for the Ckov Event
31
 
 
32
 
class KLEvent {};  // placeholder for the KL Event
33
 
 
34
 
class EMREvent {};  // placeholder for the EMR Event
35
 
 
36
 
class TriggerEvent {};  // placeholder for the Trigger Event
37
 
 
38
 
class GlobalEvent {};  // placeholder for the Global recon event
39
 
 
40
34
/** @class ReconEvent contains reconstruction data pertaining to a DAQ particle
41
35
 *         event
42
36
 *
58
52
    /** Destructor */
59
53
    virtual ~ReconEvent();
60
54
 
 
55
    /** Get the DAQ particle event number */
 
56
    int GetPartEventNumber() const;
 
57
 
 
58
    /** Set the DAQ particle event number */
 
59
    void SetPartEventNumber(int event);
 
60
 
61
61
    /** Get the TOF detector event */
62
62
    TOFEvent* GetTOFEvent() const;
63
63
 
110
110
    TriggerEvent* _trigger_event;
111
111
    GlobalEvent* _global_event;
112
112
 
 
113
    int _part_event_number;
 
114
 
113
115
    ClassDef(ReconEvent, 1)
114
116
};
115
117