Changes in classes/DelphesFactory.h [341014c:0ccf6fd] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesFactory.h
r341014c r0ccf6fd 42 42 { 43 43 public: 44 44 45 DelphesFactory(const char *name = "ObjectFactory"); 45 46 ~DelphesFactory(); 46 47 47 virtual void Clear(Option_t *option = "");48 48 virtual void Clear(Option_t* option = ""); 49 49 50 TObjArray *NewPermanentArray(); 50 51 … … 55 56 TObject *New(TClass *cl); 56 57 57 template 58 template<typename T> 58 59 T *New() { return static_cast<T *>(New(T::Class())); } 59 60 60 61 private: 62 61 63 ExRootTreeBranch *fObjArrays; //! 62 64 63 65 #if !defined(__CINT__) && !defined(__CLING__) 64 std::map< const TClass *, ExRootTreeBranch *> fBranches; //!66 std::map< const TClass*, ExRootTreeBranch* > fBranches; //! 65 67 #endif 66 68 67 std::set< TObject *> fPool; //!68 69 std::set< TObject* > fPool; //! 70 69 71 ClassDef(DelphesFactory, 1) 70 72 }; 71 73 72 74 #endif /* DelphesFactory */ 75
Note:
See TracChangeset
for help on using the changeset viewer.