~jan.greis/maus/straighttemp

« back to all changes in this revision

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

  • Committer: Jan Greis
  • Date: 2015-08-03 11:36:56 UTC
  • mfrom: (697.2.10 rel709)
  • Revision ID: j.r.greis@warwick.ac.uk-20150803113656-1jfwsvls88yh57gs
MergeĀ fromĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
      : _plane_hit_array_proc(new EMRPlaneHitProcessor) {
24
24
    RegisterValueBranch
25
25
          ("emr_plane_hits", &_plane_hit_array_proc, &EMREvent::GetEMRPlaneHitArray,
26
 
           &EMREvent::SetEMRPlaneHitArray, false );
 
26
           &EMREvent::SetEMRPlaneHitArray, false);
27
27
    RegisterValueBranch
28
28
          ("initial_trigger", &_bool_proc, &EMREvent::GetInitialTrigger,
29
29
          &EMREvent::SetInitialTrigger, false);
55
55
    RegisterValueBranch
56
56
          ("charge_ratio_SA", &_double_proc, &EMREvent::GetChargeRatioSA,
57
57
          &EMREvent::SetChargeRatioSA, false);
 
58
    RegisterValueBranch
 
59
          ("plane_density", &_double_proc, &EMREvent::GetPlaneDensity,
 
60
          &EMREvent::SetPlaneDensity, false);
 
61
    RegisterValueBranch
 
62
          ("chi2", &_double_proc, &EMREvent::GetChi2,
 
63
          &EMREvent::SetChi2, false);
58
64
}
59
65
}  // namespace MAUS
60
66