/[PAMELA software]/PamCut/PamCutBase/PamCutBase.cpp
ViewVC logotype

Diff of /PamCut/PamCutBase/PamCutBase.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by pam-fi, Wed Jun 17 12:58:00 2009 UTC revision 1.4 by pam-fi, Tue Oct 27 10:24:02 2009 UTC
# Line 70  PamCut& PamCut::operator=(const PamCut & Line 70  PamCut& PamCut::operator=(const PamCut &
70  /* ************************ *  /* ************************ *
71   *     PAMCUTCOLLECTION   *     PAMCUTCOLLECTION
72   * ************************ */   * ************************ */
73    PamCutCollection::~PamCutCollection(){
74    
75  void PamCutCollection::AddCut(PamCut &cut) {    if (_owns){
76    _cuts.push_back(&cut);      for (unsigned int i = 0; i < _cuts.size(); i++)
77          if (_cuts[i] != NULL){
78            delete _cuts[i];
79            _cuts[i] = NULL;
80          }
81      }
82    }
83    
84    
85    void PamCutCollection::AddCut(PamCut *cut) {
86      _cuts.push_back(cut);
87  }  }
88    
89  int PamCutCollection::Check(PamLevel2 *event) {  int PamCutCollection::Check(PamLevel2 *event) {

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.23