~jan.greis/maus/1811

« back to all changes in this revision

Viewing changes to src/common_cpp/JsonCppProcessors/EMREventTrackProcessor.cc

  • Committer: Adam Dobbs
  • Date: 2016-01-13 11:31:12 UTC
  • mfrom: (659.2.18 release-candidate)
  • Revision ID: phuccj@gmail.com-20160113113112-bhbguupn50eyvd0z
Tags: MAUS-v1.4, MAUS-v1.4.0
MAUS-v1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of MAUS: http://micewww.pp.rl.ac.uk/projects/maus
 
2
 *
 
3
 * MAUS is free software: you can redistribute it and/or modify
 
4
 * it under the terms of the GNU General Public License as published by
 
5
 * the Free Software Foundation, either version 3 of the License, or
 
6
 * (at your option) any later version.
 
7
 *
 
8
 * MAUS is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with MAUS.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "JsonCppProcessors/EMREventTrackProcessor.hh"
 
18
 
 
19
namespace MAUS {
 
20
 
 
21
EMREventTrackProcessor::EMREventTrackProcessor()
 
22
      : _plane_hit_array_proc(new EMRPlaneHitProcessor),
 
23
        _space_point_array_proc(new EMRSpacePointProcessor) {
 
24
    RegisterValueBranch
 
25
          ("plane_hits", &_plane_hit_array_proc, &EMREventTrack::GetEMRPlaneHitArray,
 
26
           &EMREventTrack::SetEMRPlaneHitArray, false);
 
27
    RegisterValueBranch
 
28
          ("space_points", &_space_point_array_proc, &EMREventTrack::GetEMRSpacePointArray,
 
29
           &EMREventTrack::SetEMRSpacePointArray, false);
 
30
    RegisterValueBranch
 
31
          ("track", &_track_proc, &EMREventTrack::GetEMRTrack,
 
32
           &EMREventTrack::SetEMRTrack, false);
 
33
    RegisterValueBranch
 
34
          ("type", &_string_proc, &EMREventTrack::GetType,
 
35
           &EMREventTrack::SetType, false);
 
36
    RegisterValueBranch
 
37
          ("id", &_int_proc, &EMREventTrack::GetTrackId,
 
38
           &EMREventTrack::SetTrackId, false);
 
39
    RegisterValueBranch
 
40
          ("time", &_double_proc, &EMREventTrack::GetTime,
 
41
           &EMREventTrack::SetTime, false);
 
42
    RegisterValueBranch
 
43
          ("plane_density_ma", &_double_proc, &EMREventTrack::GetPlaneDensityMA,
 
44
           &EMREventTrack::SetPlaneDensityMA, false);
 
45
    RegisterValueBranch
 
46
          ("plane_density_sa", &_double_proc, &EMREventTrack::GetPlaneDensitySA,
 
47
           &EMREventTrack::SetPlaneDensitySA, false);
 
48
    RegisterValueBranch
 
49
          ("total_charge_ma", &_double_proc, &EMREventTrack::GetTotalChargeMA,
 
50
           &EMREventTrack::SetTotalChargeMA, false);
 
51
    RegisterValueBranch
 
52
          ("total_charge_sa", &_double_proc, &EMREventTrack::GetTotalChargeSA,
 
53
           &EMREventTrack::SetTotalChargeSA, false);
 
54
    RegisterValueBranch
 
55
          ("charge_ratio_ma", &_double_proc, &EMREventTrack::GetChargeRatioMA,
 
56
           &EMREventTrack::SetChargeRatioMA, false);
 
57
    RegisterValueBranch
 
58
          ("charge_ratio_sa", &_double_proc, &EMREventTrack::GetChargeRatioSA,
 
59
           &EMREventTrack::SetChargeRatioSA, false);
 
60
}
 
61
}  // namespace MAUS