~m-a-uchida/maus/RKdEdxDevel

« back to all changes in this revision

Viewing changes to src/common_cpp/Utils/RunActionManager.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:
70
70
    /** Replace current_item with new_item in run_data vector.
71
71
     *
72
72
     *  If current_item is not in the run_data vector, throw a
73
 
     *  Squeal. If new_item is already in the run_data vector or is NULL, throw
74
 
     *  a Squeal.
 
73
     *  Exception. If new_item is already in the run_data vector or is NULL, throw
 
74
     *  a Exception.
75
75
     *
76
76
     *  Memory allocated to current_item is still allocated, but no longer owned
77
77
     *  by RunActionManager (i.e. now owned by caller).
81
81
    /** Add item to the RunActionManager
82
82
     *
83
83
     *  RunActionManager now owns this memory (will clean it on delete). Throw
84
 
     *  a Squeal if item is already in the run_actions or item is NULL.
 
84
     *  a Exception if item is already in the run_actions or item is NULL.
85
85
     */
86
86
    void PushBack(RunActionBase* item);
87
87