Fork me on GitHub

Changeset 341014c in git for classes/DelphesFactory.h


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.h

    r45e58be r341014c  
    4242{
    4343public:
    44  
    4544  DelphesFactory(const char *name = "ObjectFactory");
    4645  ~DelphesFactory();
    4746
    48   virtual void Clear(Option_t* option = "");
    49  
     47  virtual void Clear(Option_t *option = "");
     48
    5049  TObjArray *NewPermanentArray();
    5150
     
    5655  TObject *New(TClass *cl);
    5756
    58   template<typename T>
     57  template <typename T>
    5958  T *New() { return static_cast<T *>(New(T::Class())); }
    6059
    6160private:
    62 
    6361  ExRootTreeBranch *fObjArrays; //!
    6462
    6563#if !defined(__CINT__) && !defined(__CLING__)
    66   std::map< const TClass*, ExRootTreeBranch* > fBranches; //!
     64  std::map<const TClass *, ExRootTreeBranch *> fBranches; //!
    6765#endif
    6866
    69   std::set< TObject* > fPool; //!
    70  
     67  std::set<TObject *> fPool; //!
     68
    7169  ClassDef(DelphesFactory, 1)
    7270};
    7371
    7472#endif /* DelphesFactory */
    75 
Note: See TracChangeset for help on using the changeset viewer.