Main-Program Settings

Introduction

The main program is up to the user to write. However, sample main programs are provided. In one such class of programs, key settings of the run are read in from a "cards file". These commands may be of two types
(a) instructions directly to Pythia, like which processes to generate, and
(b) instructions to the main program for what it should do, like how many events to generate, i.e. how many times pythia.next() should be called.
In principle these two kinds could be kept completely separate. However, to make life simpler, a number of useful main-program settings are defined on this page, so that they are recognized by the Settings machinery. They can thus be put among the other cards without distinction. It is up to you to decide which ones, if any, you actually want to use when you write your main program.

Once you have used the pythia.readFile(...) method to read in the cards file, you can interrogate the Settings database to make the values available in your main program. A slight complication is that you need to use a different method for each of the four possible return types that you want to extract, e.g.:

  bool   showCS = pythia.settings.flag("Main:showChangedSettings");
  int    nEvent = pythia.settings.mode("Main:numberOfEvents");
  double eCM    = pythia.settings.parm("Main:eCM");
  string file   = pythia.settings.word("Main:allSettingsFile"); 
To save some typing, the same method names are found directly in the Pythia class, and just send on to Settings to do the job, so that you can use pythia.flag(...) instead of pythia.settings.flag(...), etc.

Incoming beams

Normally the identities and energies of the two incoming beam particles are given by the arguments of the init call. These settings can be stored in an input "cards" file, in the following variables, and thereafter read in the user-written main program. Usage is purely optional.

mode  Main:idBeamA   (default = 2212)
The PDG id code for the first incoming particle.

mode  Main:idBeamB   (default = 2212)
The PDG id code for the second incoming particle.

flag  Main:inCMframe   (default = on)
Assume collisions occur in the CM frame.

parm  Main:eCM   (default = 1960.; minimum = 10.)
Collision CM energy, to be given if Main:inCMframe is on.

parm  Main:eBeamA   (default = 7000.; minimum = 0.)
The energy of the first incoming particle, moving in the +z direction. If the particle energy is smaller than its mass it is assumed to be at rest.

parm  Main:eBeamB   (default = 7000.; minimum = 0.)
The energy of the second incoming particle, moving in the -z direction. If the particle energy is smaller than its mass it is assumed to be at rest.

Run settings

Here further settings related to how many events to generate and whether to print some information on data used in run. Again these variables can be set in an input "cards" file, and thereafter read out an used in the user-written main program. Usage is purely optional.

mode  Main:numberOfEvents   (default = 1000; minimum = 0)
The number of events to be generated.

mode  Main:numberToList   (default = 2; minimum = 0)
The number of events to list.

mode  Main:timesToShow   (default = 50; minimum = 0)
Print the number of events generated so far, this many times, i.e. once every numberOfEvents/numberToShow events.

mode  Main:timesAllowErrors   (default = 10)
Allow this many times that pythia.next() returns false, i.e. that an event is flawed, before aborting the run.

flag  Main:showChangedSettings   (default = on)
Print a list of the changed flag/mode/parameter/word settings.

flag  Main:showAllSettings   (default = off)
Print a list of all flag/mode/parameter/word settings.

flag  Main:showChangedParticleData   (default = off)
Print a list of particle and decay data for those particles that were changed (one way or another).

flag  Main:showAllParticleData   (default = off)
Print a list of all particle and decay data.

flag  Main:writeChangedSettings   (default = off)
Write a file with the changed flag/mode/parameter/word settings, in a format appropriate to be read in at the beginning of a new run, using the pythia.readFile("fileName") method.

word  Main:changedSettingsFile   (default = currentSettings.cmnd)
The name of the file to which the changed flag/mode/parameter/word settings are written if Main:writeChangedSettings is on.

flag  Main:writeAllSettings   (default = off)
Write a file with all flag/mode/parameter/word settings, in a format appropriate to be read in at the beginning of a new run, using the pythia.readFile("fileName") method.

word  Main:allSettingsFile   (default = allSettings.cmnd)
The name of the file to which a flag/mode/parameter/word settings are written if Main:writeAllSettings is on.

flag  Main:showAllStatistics   (default = off)
Print all available statistics or only the minimal set at the end of the run.

Sample main programs

To help exemplify what a main program could look like, a few simple examples are provided:

Spares

For currently unforeseen purposes, a few dummy settings are made available here. The user can set the desired value in a "cards file" and then use that value in the main program as desired.

flag  Main:spareFlag1   (default = off)

flag  Main:spareFlag2   (default = off)

flag  Main:spareFlag3   (default = off)

mode  Main:spareMode1   (default = 0)

mode  Main:spareMode2   (default = 0)

mode  Main:spareMode3   (default = 0)

parm  Main:spareParm1   (default = 0.)

parm  Main:spareParm2   (default = 0.)

parm  Main:spareParm3   (default = 0.)

word  Main:spareWord1   (default = void)

word  Main:spareWord2   (default = void)

word  Main:spareWord3   (default = void)