Fork me on GitHub

Changes between Version 7 and Version 8 of WorkBook/ModuleSystem


Ignore:
Timestamp:
Nov 15, 2012, 11:49:03 PM (12 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/ModuleSystem

    v7 v8  
    33http://root.cern.ch/download/doc/ROOTUsersGuideHTML/ch10.html
    44
    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.
     5All 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.
    66
    77The 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.
     
    99[[Image(delphes_folders.png)]]
    1010
    11 Additional classes {{{ExRootTask}}} and {{{ExRootModule}}} has been developed to provide frequently used services for Delphes. All Delphes' modules inherit from {{{ExRootModule}}}.
     11Additional classes {{{ExRootTask}}} and {{{DelphesModule}}} has been developed to provide frequently used services for Delphes. All Delphes' modules inherit from {{{DelphesModule}}}.
    1212
    13 Here is an example of a module declartion:
     13Here is an example of a module declaration:
    1414
    1515{{{