Changes between Version 8 and Version 9 of LOEventGenerationBias
- Timestamp:
- Aug 23, 2016, 3:06:00 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LOEventGenerationBias
v8 v9 55 55 The directory '{{{PY8_CKKW}}}' must then minimally contain the two files '{{{PY8_CKKW/PY8_CKKW.f}}}' and '{{{PY8_CKKW/makefile}}}'. The optional file '{{{PY8_CKKW/bias_dependencies}}}' can also be present. 56 56 On top of these files, the user is of course free to include any additional resource that its module will use, but these will not play a role in the interface of the module to MG5_aMC. 57 58 Notice however that if you want your module to be working in the cluster mode of MadEvent, you must make sure that your module does not depend on any external file (typically parameter settings that would be read at run-time) since these external files would by default of course not be available on the worker nodes. So you must make sure that everything you will need at run time is already compiled in the library (this is the point of the targets '{{{*_card.h}}}' of the [https://cp3.irmp.ucl.ac.be/projects/madgraph/attachment/wiki/LOEventGenerationBias/makefile makefile] given in example). 57 59 58 60 === Mandatory file : '{{{<BIAS_MODULE_NAME>/<BIAS_MODULE_NAME>.f}}}' … … 113 115 }}} 114 116 115 One variable in particular defined in this include filesis '{{{character*(maxEventLength) event_record}}}' which stores the full current event record in the LHE format.116 There are also other include files that you can add to access otherinformation like the cuts values, the run card parameters, etc...117 In particular, one variable defined in this include file is '{{{character*(maxEventLength) event_record}}}' which stores the full current event record in the LHE format. 118 There are also other include files that you can add to access more information like the cuts values, the run card parameters, etc... 117 119 118 120 The illustrative example file '[https://cp3.irmp.ucl.ac.be/projects/madgraph/attachment/wiki/LOEventGenerationBias/PY8_CKKW.f PY8_CKKW.f]' highlights the use of this additional information.