Version 5 (modified by 12 years ago) ( diff ) | ,
---|
Delphes' module system is inspired by the 'Folders and Tasks' chapter from the ROOT Users Guide and it's based on the TTask
and TFolder
classes.
http://root.cern.ch/download/doc/ROOTUsersGuideHTML/ch10.html
All Delphes' modules consume and produce TObjArrays
of ExRootCandidates
. Every Delphes' module has a corresponding TFolder
that is used to store TObjArrays
produced by this module. Any Delphes' module can access TObjArrays
produced by other Delphes' module using ImportArray("ModuleInstanceName/arrayName")
method.
The contents of all Delphes' TFolders
and TObjArrays
is browsable. All the modules are accessible from the '/Delphes/Delphes' folder and all the TObjArrays
are accessible from the '/Delphes/Export' folder.
Additional classes ExRootTask
and ExRootModule
has been developed to provide frequently used services for Delphes. All Delphes' modules inherit from ExRootModule
.
#ifndef ExampleModule_h #define ExampleModule_h #include "ExRootAnalysis/ExRootModule.h" class TObjArray; class ExampleModule: public ExRootModule { public: ExampleModule(); ~ExampleModule(); void Init(); void Process(); void Finish(); private: TIterator *fItInputArray; //! const TObjArray *fInputArray; //! TObjArray *fOutputArray; //! ClassDef(ExampleModule, 1) }; #endif
Attachments (2)
- delphes_folders_v2.png (14.0 KB ) - added by 12 years ago.
- delphes_folders_v5.png (11.6 KB ) - added by 12 years ago.
Download all attachments as: .zip