~mbogomilov/maus/devel3

« back to all changes in this revision

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

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifndef _SRC_COMMON_CPP_DATASTRUCTURE_EMREVENT_
18
18
#define _SRC_COMMON_CPP_DATASTRUCTURE_EMREVENT_
19
19
 
20
 
#include "src/common_cpp/Utils/VersionNumber.hh"
 
20
#include <vector>
 
21
 
 
22
#include "Utils/VersionNumber.hh"
 
23
#include "DataStructure/EMRPlaneHit.hh"
21
24
 
22
25
namespace MAUS {
23
26
 
 
27
typedef std::vector<EMRPlaneHit*> EMRPlaneHitArray;
 
28
 
24
29
/** @class EMREvent comment
25
30
 *
26
31
 */
39
44
    /** Destructor - any member pointers are deleted */
40
45
    virtual ~EMREvent();
41
46
 
 
47
    /** Returns  */
 
48
    EMRPlaneHitArray GetEMRPlaneHitArray() const;
 
49
 
 
50
    /** Sets  */
 
51
    void SetEMRPlaneHitArray(EMRPlaneHitArray emrplanehitarray);
42
52
 
43
53
  private:
 
54
    EMRPlaneHitArray _emrplanehitarray;
44
55
 
45
56
    MAUS_VERSIONED_CLASS_DEF(EMREvent)
46
57
};