~chris-rogers/maus/emr_mc_digitization

« back to all changes in this revision

Viewing changes to src/map/MapCppTOFSpacePoints/MapCppTOFSpacePoints.hh

  • Committer: Chris Rogers
  • Date: 2014-04-16 11:48:45 UTC
  • mfrom: (707 merge)
  • mto: This revision was merged to the branch mainline in revision 711.
  • Revision ID: chris.rogers@stfc.ac.uk-20140416114845-h3u3q7pdcxkxvovs
Update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include "Utils/TOFCalibrationMap.hh"
34
34
 
 
35
namespace MAUS {
 
36
 
35
37
class MapCppTOFSpacePoints {
36
38
 
37
39
 public:
62
64
 
63
65
  TOFCalibrationMap _map;
64
66
 
65
 
  std::vector<int> xPlane0Hits;
66
 
  std::vector<int> xPlane1Hits;
 
67
  std::vector<int> _xPlane0Hits;
 
68
  std::vector<int> _xPlane1Hits;
67
69
 
68
 
  double _makeSpacePiontCut; // nanoseconds
 
70
  double _makeSpacePointCut; // nanoseconds
69
71
  double _findTriggerPixelCut; // nanoseconds
70
72
  std::string _triggerStation;
71
73
 
89
91
   * one particle event in one individual detector.
90
92
   */
91
93
  Json::Value makeSpacePoints(Json::Value &xDocPartEvent);
92
 
  bool map_init;
 
94
  bool _map_init;
93
95
};
 
96
}
 
97
 
94
98
#endif