#################################################################### ## ## ## Matrix Element ## ## ============== ## ## ## ## Generate the transfer functions ## ## ------------------------------- ## ## ## ## ## ## Authors: Mattelaer Olivier (UCL-CP3/ROMA3-INFN) ## ## Artoisenet Pierre (OHIO) ## ## ## ## Version: 2.0.0 ## ## Last change: 22/09/09 ## ## ## ########################################################################## ########################################################################## ## ## ## ## ## Instructions: ## ## ## ## - This program creates transfer functions in THETA/PHI/E ## ## - Those functions must be defined in f77 standard ## ## - In addition to each transfer function(START_TF), you MUST give## ## the typical width associated to your function (START_WIDTH) ## ## - If a transfer functions is not defined here it will by default## ## - equals to one for neutrino/neutralino ## ## - a delta functions for the rest ## ########################################################################## ## ## ## Syntax/variables: ## ## ## ## - a definition for transfer functions should define the variable tf ## ## while a definition for the width shoud define the variable width ## ## - You can use all standard f77 functions. (All variables are ## ## in double precision format). ## ## - The experimental event is defined by the variable pexp(i) ## ## i=0->3 (0->E,1->Px,2->Py,3->Pz) ## ## - The partonic event is defined by the variable p(i) ## ## i=0->3 (0->E,1->Px,2->Py,3->Pz) ## ## sigma can not depend on those variables ## ## - You can use 10 local variables ## ## (double precision): prov1,prov2,...,prov10 ## ## - You can call specific functions on p or pexp: ## ## -pt(p) : transverse momenta ## ## -eta(p) : pseudo-rapidity ## ## -rap(p) : rapidity ## ## -theta(p): polar angle ## ## -phi(p) : azimuthal angle ## ## - The whole LHCO information is available. ## ## -run_number,trigger ## ## -eta_init(N),phi_init(N),pt_init(N) ## ## -j_mass(N),ntrk(N),btag(N),had_em(N) ## ## -dummy1(N),dummy2(N) ## ## N is the LHCO tag(first column) ## ## - current tag is n_lhco ## ## - tag for missing ET is met_lhco ## ## ## ## - You can incorporate parameters that will be passed through ## ## the transfert_card.dat. Those ones must have the ## ## following syntax: #1,#2,#3,.. You can restart ## ## the assignement for each different transfer function ## ## - In addition to each transfer function(tf_), you MUST give ## ## the typical width associated to your function (sigma_) ## ## This is needed for the phase space generator ## ## ## ########################################################################## ########################################################################## ##**********************************************************************## ## TF JET ## ##**********************************************************************## e,mu,ta large prov1=(#1+#2*dsqrt(p(0))+#3*p(0)) !biais prov2=(#4+#5*dsqrt(p(0))+#6*p(0)) !sigma c c secondly we define the transfer function c tf=1d0/dsqrt(2d0*pi)/prov2*exp(-(p(0)-pexp(0)-prov1)**2/2d0/prov2**2) !first gaussian width=5d0*(#4+#5*dsqrt(pexp(0))+#6*pexp(0))