~maddevelopers/mg5amcnlo/GPU

« back to all changes in this revision

Viewing changes to Template/README

  • Committer: Johan Alwall
  • Date: 2012-05-16 03:46:48 UTC
  • mto: (147.32.8 madgraph5)
  • mto: This revision was merged to the branch mainline in revision 206.
  • Revision ID: johan@alwall.net-20120516034648-u0lzrrizvlgzlmq3
Fixed some language in UpdateNotes and Template/README file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
MadGraph/MadEvent 5
2
 
By Fabio Maltoni, Tim Stelzer and the CP3 development team
 
2
By Johan Alwall, Michel Herquet, Fabio Maltoni, Olivier Mattelaer and Tim Stelzer
3
3
 
4
4
http://madgraph.phys.ucl.ac.be/
5
5
http://madgraph.hep.uiuc.edu/
14
14
A) generate events
15
15
B) how to run in cluster/multi-core mode
16
16
C) how to launch sequential run (called multi-run)
17
 
D) How to launch pythia-pgs/Delphes
18
 
E) How to prevent the html opening
 
17
D) How to launch Pythia/PGS/Delphes
 
18
E) How to prevent automatic opening of html pages
19
19
 
20
20
A) To generate events:
21
21
-------------------
83
83
nb_core.
84
84
 
85
85
 
86
 
C) Launch Sequential generation of events:
87
 
------------------------------------------
 
86
C) Launch sequential runs for generation of large number of events:
 
87
-------------------------------------------------------------------
88
88
 
89
 
For various reason, we forbids to generate more than 100k events
90
 
by generation. In order to generate more events, you then need to
91
 
run 'generate_events' multiple times. In order to simplify that
92
 
task we have created a special command 'multi_run' which is 
93
 
doing exactly that, and combine the lhe sample in a single file 
94
 
automatically.
95
 
This command can be launch via the madevent user interface:
96
 
`./bin/madevent`. Then you can launch it with the following command:
 
89
For various reason, we recommend not to generate more than 100k events
 
90
pre run. In order to simplify generating large numbers of events,
 
91
we have created a special command 'multi_run', which is equivalent to
 
92
running generate_events multiple times (ensuring that the random seed is
 
93
different for each run), and also automatically combines the resulting
 
94
lhe files into a single file.
 
95
This command can be launched via the madevent user interface
 
96
./bin/madevent using the following command:
97
97
multi_run NBRUN [RUN_NAME] [options]
98
 
for more information about this command (valid options), you can type
99
 
`help multi_run`
 
98
For more information about this command (valid options), you can type
 
99
`help multi_run` inside the interface.
100
100
 
101
 
Note that you can launch this single command whithout entering the interactive mode:
 
101
Note that you can also launch a command whithout entering the interactive mode:
102
102
./bin/madevent multi_run NBRUN 
103
103
 
104
104
 
105
105
D) Launching pythia/pgs/delphes on a (previously) generated sample:
106
106
-------------------------------------------------------------------
107
107
 
108
 
In this section, I will presupose that the corresponding package are
 
108
In this section, I will presupose that the corresponding package is
109
109
already installed and configured properly. (See section how to generate 
110
110
events if this is not the case)
111
111
 
115
115
pythia RUN [--run_options]
116
116
pgs RUN [--run_options]
117
117
delphes RUN [--run_options]
118
 
where RUN is the run_name of the run. One of the convenient option is
 
118
where RUN is the run_name of the run. One of the convenient options is
119
119
--tag=XXXX
120
 
which allow to specify the tag name in case of multiple running of 
121
 
the same program.
122
 
 
123
 
E) How to prevent the html opening:
124
 
-----------------------------------
125
 
 
126
 
Edit the file ./Cards/me5_configuration.txt and put
127
 
the option automatic_html_opening on `False`.
128
 
You can edit the MG5 configuration cards, in order to
129
 
have this value on False by default for all subsequent 
130
 
run.
 
120
which allow to specify the tag name in case of multiple runs with
 
121
the same program. Note that by default, a unique run tag is generated 
 
122
for each time you run.
 
123
 
 
124
E) How to prevent automatic opening of the crossx.html page:
 
125
------------------------------------------------------------
 
126
 
 
127
Edit the file ./Cards/me5_configuration.txt and set
 
128
the option automatic_html_opening to `False`.
 
129
You can also edit the MG5 configuration card
 
130
input/mg5_configuration.txt
 
131
in order to have this value on False by default for all subsequently 
 
132
generated processes.
131
133
 
132
134