~mwinter4/maus/ckov_0_9_3

« back to all changes in this revision

Viewing changes to src/common_cpp/JsonCppProcessors/MCEventProcessor.hh

MergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "src/common_cpp/JsonCppProcessors/ArrayProcessors.hh"
25
25
 
26
26
#include "src/common_cpp/JsonCppProcessors/HitProcessor.hh"
 
27
#include "src/common_cpp/JsonCppProcessors/VirtualHitProcessor.hh"
 
28
#include "src/common_cpp/JsonCppProcessors/TrackProcessor.hh"
 
29
#include "src/common_cpp/JsonCppProcessors/SciFiNoiseHitProcessor.hh"
27
30
 
28
31
#include "src/common_cpp/DataStructure/MCEvent.hh"
29
32
 
37
40
 
38
41
 private:
39
42
    ValueArrayProcessor<SciFiHit> _sci_fi_hit_proc;
 
43
    ValueArrayProcessor<SciFiNoiseHit> _sci_fi_noise_hit_proc;
40
44
    ValueArrayProcessor<TOFHit> _tof_hit_proc;
41
45
    ValueArrayProcessor<SpecialVirtualHit> _special_virtual_hit_proc;
42
46
    ValueArrayProcessor<Track> _track_proc;
46
50
}
47
51
 
48
52
#endif
49