Changes between Initial Version and Version 1 of TransferFunction


Ignore:
Timestamp:
Mar 20, 2012, 4:18:30 PM (12 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TransferFunction

    v1 v1  
     1
     2
     3== TransferFunction in MadWeight ==
     4
     5
     6
     7=== What is a TransferFunction? ===
     8
     9The transfer function is the conditional probability to observe  a detector-level event,   given a certain parton-level configuration.
     10In particular, this function includes the response of the detector. In MadWeight, we will consider that the transfer function can be factorized in a product of resolution functions associated to each external (or initial) particle. Furthermore we will assume that these functions are  factorized in the energy, the rapidity and the azimutal angle of each final state particle.
     11
     12The resolution function associated to a missing particle (i.e. a neutrino) equals one. Otherwise it depends on the capabilities of the detector: for well measured quantities the resolution function looks like a narrow gaussian (for exemples: Energy of muons). Examples of transfer functions are given below.
     13
     14=== Standard TransferFunctions ===
     15
     16==== dbl_gauss_pt_jet ====
     17This transfer function is the standard one, this is the transfer functions use by Canneli in her PHd thesis.
     18    * a delta function is associated to each  visible angle,
     19    * a delta function is associated to the energy of each lepton
     20    * the resolution function for each jet/bjet energy is parametrized as a double Gaussian distribution depending on five parameters, each of them being a function of the Energy of the jet (for examplt
     21     %$ \sigma=a+b\sqrt(E)+c*E$% ), resulting in 15 constants to be fitted by MC simulations.
     22
     23==== uniform ====
     24This transfer function is needed in order to test the phase-space volume and the total cross section. It is 1 regardless of the parton-level state.
     25
     26==== all_delta ====
     27All transfer function are put on delta
     28
     29=== How to create a new one with version before 2.1.2 ? ===
     30
     31   * First you need to have the full Madgraph/MadWeight version.
     32   *  copy  the transfer function template: $> cp -rf ./Transfer_Fct/new_transfer/  ./Transfer_Fct/MY_TF
     33   * go into your new directory: $> cd  ./Transfer_Fct/MY_TF
     34   * complete information in the TF_input.dat. (see next section)
     35   * create your transfer functions: $> ./create_transfert_functions.py (in version 1.3.0 -> need python 2.4, solve in version 1.3.1)
     36
     37=== How to create a new one with version after 2.1.2 ? ===
     38
     39   * In this version you can define your new tf in local
     40   * change directory $> cd ./Source/MadWeight_File/Transfer_Fct/data/
     41   * complete the information of the file TF_user.dat
     42   * If you want to give a specific name to your new transfer function: $> cp TF_user.dat TF_NewName.dat
     43   * To apply this new transfer function to the directory see paragraph "How to include a transfer function in a process"
     44
     45=== How to fill the TF_input.dat file? ===
     46   *  Complete ordering part:
     47The numerical phase-space integration requires to know the scturture of  the transfer function, in order to choose the correct phase space parametrization. For this reason the algorithm needs  to know which energies are well measured (usually those linked to electrons,muons,or photons) and which are not.
     48   *   Transfer function: 
     49Follow the instruction in the beginning of the file "TF_input.dat". For each part of the transfer functions you have to provide a correct f77 functions, and give its typical broadness. (both in f77)
     50
     51==== Fortran 77 restriction ====
     52    This program is intended to be used, one day, on-line by external users. So for evident reasons of security, some Fortran instructions  are forbidden in the expression of the transfer function. By default only the if ... then ... elseif .... else ... endif syntax are allowed. If you run this code in local you can remove this restriction by editing the  list "forbidden" in the beginning of the create_transfert_functions.py file.
     53
     54==== How to include dynamical parameters ====
     55 you can use dynamical parameters. Those parameters will be defined in the transfer_card.dat just before the madweight call. So it is not mandatory to recompile the code. In order to do that, you have to enter #1, #2 at the position of the dynamical parameters.
     56
     57=== How to include a transfer function in a process? ===
     58First of all, your process must have been generated after having executed the script ./PassToMadWeight
     59
     60   * '''during the creation of the process''':you simply have to put the name of the  transfer function directory  (in the above example: MY_TF)  at the end of the  proc_card.dat file.
     61      For online generation this method is irrelevant, so you have to use the next method.
     62
     63   *  '''after the creation of the process''': you can simply type the following command : $> ./bin/change_tf.py  NEW_TF
     64
     65
     66
     67-- Main.OlivierMattelaer - 03 Oct 2008
     68
     69
     70