Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesFactory.cc

    r341014c r0ccf6fd  
    1616 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 */
     18
    1819
    1920/** \class DelphesFactory
     
    5051  if(fObjArrays) delete fObjArrays;
    5152
    52   map<const TClass *, ExRootTreeBranch *>::iterator itBranches;
     53  map< const TClass*, ExRootTreeBranch* >::iterator itBranches;
    5354  for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches)
    5455  {
    55     delete(itBranches->second);
     56    delete (itBranches->second);
    5657  }
    5758}
     
    5960//------------------------------------------------------------------------------
    6061
    61 void DelphesFactory::Clear(Option_t *option)
     62void DelphesFactory::Clear(Option_t* option)
    6263{
    6364  set<TObject *>::iterator itPool;
     
    6970  TProcessID::SetObjectCount(0);
    7071
    71   map<const TClass *, ExRootTreeBranch *>::iterator itBranches;
     72  map< const TClass*, ExRootTreeBranch* >::iterator itBranches;
    7273  for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches)
    7374  {
     
    119120
    120121//------------------------------------------------------------------------------
     122
Note: See TracChangeset for help on using the changeset viewer.