~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/map/MapPyTestMap/MapPyTestMap.py

  • 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:
80
80
        if (config.has_key("process_delay")):
81
81
            self.process_delay = config["process_delay"]
82
82
        assert(maus_cpp.globals.has_instance())
83
 
        return True
84
83
 
85
84
    def process(self, spill_doc): # pylint:disable = R0201
86
85
        """
121
120
            return False
122
121
        if (self.__death_result == MapPyTestMap.EXCEPTION):
123
122
            raise ValueError("Death exception")
124
 
        return True
125
123