~ajdobbs/maus/event-viewer

« back to all changes in this revision

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

  • Committer: Adam Dobbs
  • Date: 2015-07-13 16:49:38 UTC
  • mfrom: (706.6.27 maus)
  • Revision ID: phuccj@gmail.com-20150713164938-8ux8j43u8iyx0yky
Merge: EMR updates

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