Changes in classes/DelphesFactory.cc [0ccf6fd:341014c] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesFactory.cc
r0ccf6fd r341014c 16 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 17 */ 18 19 18 20 19 /** \class DelphesFactory … … 51 50 if(fObjArrays) delete fObjArrays; 52 51 53 map< const TClass*, ExRootTreeBranch*>::iterator itBranches;52 map<const TClass *, ExRootTreeBranch *>::iterator itBranches; 54 53 for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches) 55 54 { 56 delete 55 delete(itBranches->second); 57 56 } 58 57 } … … 60 59 //------------------------------------------------------------------------------ 61 60 62 void DelphesFactory::Clear(Option_t *option)61 void DelphesFactory::Clear(Option_t *option) 63 62 { 64 63 set<TObject *>::iterator itPool; … … 70 69 TProcessID::SetObjectCount(0); 71 70 72 map< const TClass*, ExRootTreeBranch*>::iterator itBranches;71 map<const TClass *, ExRootTreeBranch *>::iterator itBranches; 73 72 for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches) 74 73 { … … 120 119 121 120 //------------------------------------------------------------------------------ 122
Note:
See TracChangeset
for help on using the changeset viewer.