Changes between Version 16 and Version 17 of WorkBook/ModuleSystem
- Timestamp:
- Dec 17, 2014, 11:33:46 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/ModuleSystem
v16 v17 5 5 All Delphes modules consume and produce [http://root.cern.ch/root/html/TObjArray.html TObjArrays] of [wiki:WorkBook/Candidate Candidates]. 6 6 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.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 modules using {{{ImportArray("ModuleInstanceName/arrayName")}}} method. 8 8 9 9 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. … … 153 153 candidateMomentum = candidate->Momentum; 154 154 155 // apply an effic ency formula155 // apply an efficiency formula 156 156 if(gRandom->Uniform() <= fFormula->Eval(candidateMomentum.Pt(), candidatePosition.Eta())) 157 157 {