~durga/maus/rel709

« back to all changes in this revision

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

  • Committer: Adam Dobbs
  • Date: 2014-12-11 13:26:05 UTC
  • mfrom: (659.1.96 release-candidate)
  • Revision ID: phuccj@gmail.com-20141211132605-6g6j2927elggi2q6
Tags: MAUS-v0.9.2
MAUS-v0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    RegisterValueBranch
26
26
          ("delta_t", &_int_proc, &EMRBarHit::GetDeltaT,
27
27
          &EMRBarHit::SetDeltaT, true);
 
28
    RegisterValueBranch
 
29
          ("hittime", &_int_proc, &EMRBarHit::GetHitTime,
 
30
          &EMRBarHit::SetHitTime, true);
 
31
    RegisterValueBranch
 
32
          ("x", &_double_proc, &EMRBarHit::GetX,
 
33
          &EMRBarHit::SetX, true);
 
34
    RegisterValueBranch
 
35
          ("y", &_double_proc, &EMRBarHit::GetY,
 
36
          &EMRBarHit::SetY, true);
 
37
    RegisterValueBranch
 
38
          ("z", &_double_proc, &EMRBarHit::GetZ,
 
39
          &EMRBarHit::SetZ, true);
 
40
    RegisterValueBranch
 
41
          ("charge_corrected", &_double_proc, &EMRBarHit::GetChargeCorrected,
 
42
          &EMRBarHit::SetChargeCorrected, true);
 
43
    RegisterValueBranch
 
44
          ("total_charge_corrected", &_double_proc, &EMRBarHit::GetTotalChargeCorrected,
 
45
          &EMRBarHit::SetTotalChargeCorrected, true);
28
46
}
29
47
}  // namespace MAUS
30
48
 
31