Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesFactory.h

    r341014c r0ccf6fd  
    4242{
    4343public:
     44 
    4445  DelphesFactory(const char *name = "ObjectFactory");
    4546  ~DelphesFactory();
    4647
    47   virtual void Clear(Option_t *option = "");
    48 
     48  virtual void Clear(Option_t* option = "");
     49 
    4950  TObjArray *NewPermanentArray();
    5051
     
    5556  TObject *New(TClass *cl);
    5657
    57   template <typename T>
     58  template<typename T>
    5859  T *New() { return static_cast<T *>(New(T::Class())); }
    5960
    6061private:
     62
    6163  ExRootTreeBranch *fObjArrays; //!
    6264
    6365#if !defined(__CINT__) && !defined(__CLING__)
    64   std::map<const TClass *, ExRootTreeBranch *> fBranches; //!
     66  std::map< const TClass*, ExRootTreeBranch* > fBranches; //!
    6567#endif
    6668
    67   std::set<TObject *> fPool; //!
    68 
     69  std::set< TObject* > fPool; //!
     70 
    6971  ClassDef(DelphesFactory, 1)
    7072};
    7173
    7274#endif /* DelphesFactory */
     75
Note: See TracChangeset for help on using the changeset viewer.