Changes between Version 7 and Version 8 of WorkBook/ModuleSystem
- Timestamp:
- Nov 15, 2012, 11:49:03 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/ModuleSystem
v7 v8 3 3 http://root.cern.ch/download/doc/ROOTUsersGuideHTML/ch10.html 4 4 5 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.5 All Delphes' modules consume and produce {{{TObjArrays}}} of {{{Candidates}}}. 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. 6 6 7 7 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. … … 9 9 [[Image(delphes_folders.png)]] 10 10 11 Additional classes {{{ExRootTask}}} and {{{ ExRootModule}}} has been developed to provide frequently used services for Delphes. All Delphes' modules inherit from {{{ExRootModule}}}.11 Additional classes {{{ExRootTask}}} and {{{DelphesModule}}} has been developed to provide frequently used services for Delphes. All Delphes' modules inherit from {{{DelphesModule}}}. 12 12 13 Here is an example of a module declar tion:13 Here is an example of a module declaration: 14 14 15 15 {{{