Fork me on GitHub

Changes between Version 16 and Version 17 of WorkBook/ModuleSystem


Ignore:
Timestamp:
Dec 17, 2014, 11:33:46 PM (10 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/ModuleSystem

    v16 v17  
    55All Delphes modules consume and produce [http://root.cern.ch/root/html/TObjArray.html TObjArrays] of [wiki:WorkBook/Candidate Candidates].
    66
    7 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.
     7Every 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 modules using {{{ImportArray("ModuleInstanceName/arrayName")}}} method.
    88
    99The 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.
     
    153153    candidateMomentum = candidate->Momentum;
    154154
    155     // apply an efficency formula
     155    // apply an efficiency formula
    156156    if(gRandom->Uniform() <= fFormula->Eval(candidateMomentum.Pt(), candidatePosition.Eta()))
    157157    {