ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since e4caec4 was d7d2da3, checked in by pavel <pavel@…>, 12 years ago |
move branches/ModularDelphes to trunk
|
-
Property mode
set to
100644
|
File size:
968 bytes
|
Rev | Line | |
---|
[d7d2da3] | 1 | #ifndef DelphesFactory_h
|
---|
| 2 | #define DelphesFactory_h
|
---|
| 3 |
|
---|
| 4 | /** \class DelphesFactory
|
---|
| 5 | *
|
---|
| 6 | * Class handling creation of Candidate,
|
---|
| 7 | * TObjArray and all other objects.
|
---|
| 8 | *
|
---|
| 9 | * $Date: 2008-06-04 13:57:25 $
|
---|
| 10 | * $Revision: 1.1 $
|
---|
| 11 | *
|
---|
| 12 | *
|
---|
| 13 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 14 | *
|
---|
| 15 | */
|
---|
| 16 |
|
---|
| 17 | #include "TNamed.h"
|
---|
| 18 |
|
---|
| 19 | #include <map>
|
---|
| 20 | #include <set>
|
---|
| 21 |
|
---|
| 22 | class TObjArray;
|
---|
| 23 | class Candidate;
|
---|
| 24 |
|
---|
| 25 | class ExRootTreeBranch;
|
---|
| 26 |
|
---|
| 27 | class DelphesFactory: public TNamed
|
---|
| 28 | {
|
---|
| 29 | public:
|
---|
| 30 |
|
---|
| 31 | DelphesFactory(const char *name = "ObjectFactory");
|
---|
| 32 | ~DelphesFactory();
|
---|
| 33 |
|
---|
| 34 | void Clear();
|
---|
| 35 |
|
---|
| 36 | TObjArray *NewPermanentArray();
|
---|
| 37 |
|
---|
| 38 | TObjArray *NewArray() { return New<TObjArray>(); }
|
---|
| 39 |
|
---|
| 40 | Candidate *NewCandidate();
|
---|
| 41 |
|
---|
| 42 | TObject *New(TClass *cl);
|
---|
| 43 |
|
---|
| 44 | template<typename T>
|
---|
| 45 | T *New() { return static_cast<T *>(New(T::Class())); }
|
---|
| 46 |
|
---|
| 47 | private:
|
---|
| 48 |
|
---|
| 49 | ExRootTreeBranch *fObjArrays; //!
|
---|
| 50 |
|
---|
| 51 | std::map< const TClass*, ExRootTreeBranch* > fBranches; //!
|
---|
| 52 | std::set< TObject* > fPool; //!
|
---|
| 53 |
|
---|
| 54 | ClassDef(DelphesFactory, 1)
|
---|
| 55 | };
|
---|
| 56 |
|
---|
| 57 | #endif /* DelphesFactory */
|
---|
| 58 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.