~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to src/map/MapCppTrackerDigits/MapCppTrackerDigits.cc

  • 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:
19
19
#include "src/common_cpp/DataStructure/ReconEvent.hh"
20
20
#include "src/map/MapCppTrackerDigits/MapCppTrackerDigits.hh"
21
21
 
22
 
#include "Interface/Squeal.hh"
 
22
#include "Utils/Exception.hh"
23
23
#include "src/common_cpp/Utils/CppErrorHandler.hh"
24
24
 
25
25
namespace MAUS {
64
64
      return writer.write(_json_root);
65
65
    }
66
66
  // If an exception is caught, the JSON file returned is the same that was read-in (_json_root)...
67
 
  } catch(Squeal& squee) {
68
 
    squee.Print();
 
67
  } catch(Exception& exception) {
 
68
    exception.Print();
69
69
    return writer.write(_json_root);
70
70
  } catch(...) {
71
71
    Json::Value errors;