~mwinter4/maus/ckov-reco

« back to all changes in this revision

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

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include "Config/MiceModule.hh"  //  from old file?
41
41
#include "Utils/TOFChannelMap.hh"
42
42
 
 
43
namespace MAUS {
 
44
 
43
45
class MapCppTOFDigits {
44
46
 
45
47
 public:
91
93
   *  @param xDocInfo Json document with the TDC digit information. This is needed
92
94
   *  so ascosiate the proper ADC data to corresponding TDC data.
93
95
   */
94
 
  bool getAdc(Json::Value xDocAdc, Json::Value xDocTdcHit, Json::Value &xDocDigit) throw(Squeal);
 
96
  bool getAdc(Json::Value xDocAdc, Json::Value xDocTdcHit, Json::Value &xDocDigit) throw(Exception);
95
97
 
96
98
  /** @brief process JSON document
97
99
   *  @param xDocTrigReq Json document with the trigger request for a specific particle event
98
100
   *  @param xDocInfo 
99
101
   */
100
102
  bool getTrigReq(Json::Value xDocTrigReq, Json::Value xDocTdcHit,
101
 
                  Json::Value &xDocDigit) throw(Squeal);
 
103
                  Json::Value &xDocDigit) throw(Exception);
102
104
 
103
105
  /** @brief process JSON document
104
106
   *  @param document Receive a document with raw data and return
105
107
   *  a document with digits
106
108
   */
107
 
  bool getTrig(Json::Value xDocTrig, Json::Value xDocTdcHit, Json::Value &xDocDigit) throw(Squeal);
 
109
  bool getTrig(Json::Value xDocTrig,
 
110
               Json::Value xDocTdcHit,
 
111
               Json::Value &xDocDigit) throw(Exception);
108
112
  bool map_init;
109
113
};
 
114
}
 
115
 
110
116
#endif
111
117