Back to home page

Project CMSSW displayed by LXR

 
 

    


Warning, /GeneratorInterface/BeamHaloGenerator/interface/bhgcons.inc is written in an unsupported language. File is not indexed.

0001 *****************************************************************
0002 *                                                               *
0003 *     DESCRIPTION: this include file contains the control       *
0004 *                  parameters and most relevant constants       *
0005 *                  and common block for event counting          *
0006 *                                                               *
0007 *     last update (18/12/2004) by droll                         *
0008 *                                                               *
0009 *****************************************************************
0010       ! particle masses
0011       REAL       M_MUON
0012       PARAMETER (M_MUON = 0.105658357)    ! mu+- mass [GeV/c^2]
0013       REAL       M_PION
0014       PARAMETER (M_PION = 0.13957018)     ! pi+- mass [GeV/c^2]
0015       REAL       M_KAON
0016       PARAMETER (M_KAON = 0.493677)       !  K+- mass [GeV/c^2]
0017       REAL       M_PROT
0018       PARAMETER (M_PROT = 0.93827203)     !  p+  mass [GeV/c^2]
0019       REAL       M_NEUT
0020       PARAMETER (M_NEUT = 0.93956536)     !  n0  mass [GeV/c^2]
0021       REAL       SP_O_L
0022       PARAMETER (SP_O_L = 299.792458)     ! c [mm/ns]
0023       ! LHC simulation parameters
0024       REAL       E_BEAM
0025       PARAMETER (E_BEAM = 7000.)          ! energy per LHC beam  [GeV]
0026       REAL       Z_ZERO
0027       PARAMETER (Z_ZERO = 23000.)         ! scoring plane z [mm]
0028       REAL       T_ZERO
0029       PARAMETER (T_ZERO = -Z_ZERO/SP_O_L) ! starting time [ns]
0030 
0031       ! for "read from file" mode #2
0032       ! name and number of events of file1
0033       CHARACTER*100 F1NAME
0034       PARAMETER    (F1NAME = 'input.txt')
0035       INTEGER       F1N_EV
0036       PARAMETER    (F1N_EV = 8200000)
0037 
0038       ! event counting
0039       INTEGER NILAST,MAXLINE
0040       DOUBLE PRECISION NP_GEN,N_READ
0041       COMMON/BHGNEV/   NP_GEN,N_READ,NILAST,MAXLINE