~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/common_cpp/API/MapBase.hh

  • Committer: Durga Rajaram
  • Date: 2014-07-16 15:13:05 UTC
  • mfrom: (659.1.92 cand)
  • Revision ID: durga@fnal.gov-20140716151305-q27rv1y9p03v9lks
Tags: MAUS-v0.9, MAUS-v0.9.0
MAUS-v0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
   */
72
72
  inline PyObject* process_pyobj(PyObject* py_input) const;
73
73
 
74
 
 
75
74
 private:
76
75
  /*!\brief Process data
77
76
   *
81
80
   *        MapBase retains ownership of memory allocated by data.
82
81
   */
83
82
  virtual void _process(TYPE* data) const = 0;
 
83
 
 
84
  virtual void HandleException(TYPE** data,
 
85
                               std::exception* exc,
 
86
                               std::string class_name) const;
84
87
};
85
 
 
86
88
}// end of namespace
87
89
 
88
90
#include "src/common_cpp/API/MapBase-inl.hh"