Fork me on GitHub

Changeset 341014c in git for classes/DelphesFactory.cc


Ignore:
Timestamp:
Feb 12, 2019, 9:29:17 PM (6 years ago)
Author:
Pavel Demin <pavel-demin@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
6455202
Parents:
45e58be
Message:

apply .clang-format to all .h, .cc and .cpp files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesFactory.cc

    r45e58be r341014c  
    1616 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 */
    18 
    1918
    2019/** \class DelphesFactory
     
    5150  if(fObjArrays) delete fObjArrays;
    5251
    53   map< const TClass*, ExRootTreeBranch* >::iterator itBranches;
     52  map<const TClass *, ExRootTreeBranch *>::iterator itBranches;
    5453  for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches)
    5554  {
    56     delete (itBranches->second);
     55    delete(itBranches->second);
    5756  }
    5857}
     
    6059//------------------------------------------------------------------------------
    6160
    62 void DelphesFactory::Clear(Option_t* option)
     61void DelphesFactory::Clear(Option_t *option)
    6362{
    6463  set<TObject *>::iterator itPool;
     
    7069  TProcessID::SetObjectCount(0);
    7170
    72   map< const TClass*, ExRootTreeBranch* >::iterator itBranches;
     71  map<const TClass *, ExRootTreeBranch *>::iterator itBranches;
    7372  for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches)
    7473  {
     
    120119
    121120//------------------------------------------------------------------------------
    122 
Note: See TracChangeset for help on using the changeset viewer.