Contents
Links
This is neither an official nor a complete list. It's just my personal collection of links.
publications
1. Fittino, a program for determining MSSM parameters from collider observables using an iterative method, arXiv:hep-ph/0412012
the original fittino paper explaining the basic idea
2. Determination of MSSM Parameters from LHC and ILC Observables in a Global Fit, arXiv:hep-ph/0511006
Fittino MSSM fit (with the 'old' version of the code)
3. Extracting SUSY parameters from LHC measurements using Fittino, arXiv:hep-ph/0907.2589
explanation of the Markov chain method ('new' in fittino)
4. Constrained Supersymmetry after two years of LHC data: a global view with Fittino, arXiv:1204.4199
fit to Constrained Minimal Supersymmetric Standard Model (CMSSM) and to a variant with non-universal Higgs masses (NUHM1), using all the "new" fittino features like MarkovChains and input from other codes, e.g. AstroFit, FeynHiggs, ...
webpages
new Fittino homepage: http://www.fittino.uni-bonn.de
old homepage: http://www-flc.desy.de/fittino (on the web archive)
other
Determination of SUSY parameters with Fittino (K. Desch, PROSPECTS workshop 2010) http://agenda.albanova.se/contributionDisplay.py?contribId=265&sessionId=264&confId=1983
Installation Log
This is a log of my last installation of fittino on nafhh-ilc01 (Scientific Linux 5). It's not a complete installation guide, but might be helpful as a future reference of what to install and in which order.
Fittino and prerequisites for compiling it
1. FeynHiggs-2.10.0
./configure make
2a. HiggsBounds
in configure: chose compiler, path to FeynHiggs (FHINCLUDE and FHLIBS): FHINCLUDE = -I<software_base_dir>/FeynHiggs-2.10.0/build FHLIBS = -L<software_base_dir>/FeynHiggs-2.10.0/build -lFH -lg2c uncomment enableCHISQ!!! ./configure make (for LEP chisquare tables: add directory <software_base_dir>/LEPCLsb/ ./configure-with-chisq )
2b. HiggsSignals
in configure: chose compiler, path to FeynHiggs and HiggsBounds (>4.0) ./configure make
3. boost
just download & untar (http://downloads.sourceforge.net/project/boost/boost/1.42.0)
4. fittino
svn co https://svn.physik.uni-bonn.de/basic/fittino/branches/fittino1 adjust GNUMakefile: BOOST = -I<software_base_dir>/boost_1_42_0/ HBLIB = -L<software_base_dir>/Higgs``Bounds-3.8.1/ -lHB HSLIB = -L<software_base_dir>/HiggsSignals-1.1.0/ -lHS LIBGFORTRAN = -L/usr/lib/gcc/x86_64-redhat-linux/4.4.7 -lgfortran make
Calculators
1. DarkSUSY
wget http://www.fysik.su.se/~edsjo/darksusy/tars/darksusy-5.0.5.tar.gz tar -xzf darksusy-5.0.5.tar.gz && rm darksusy-5.0.5.tar.gz && cd darksusy-5.0.5 added #include <string.h> in ./contrib/galprop/v50p/Configure.cc ./contrib/galprop/v50p/Galdef.h ./contrib/galprop/v50p/kinematic.cc ./contrib/galprop/v50p/Particle.h #include <cstdlib> in ./contrib/galprop/v50p/Galdef.h ./configure make
2. AstroFit (needs DarkSUSY)
adjust makefile: AF_INSTALL=<software_base_dir>/AfXn DS_INSTALL=<software_base_dir>/darksusy-5.0.5/ make (this also links to HB and FH)
3. SPheno
- Don't use gfortran older than 4.4!!!
wget http://www.hepforge.org/archive/spheno/SPheno-3.2.4.tar.gz tar -xzf SPheno-3.2.4.tar.gz && rm SPheno-3.2.4.tar.gz && cd SPheno-3.2.4 edit Makefile: F90 = gfortran44 edit src/Makefile: copy gfortran part for gfortran44 adjust InputOutput.F90 to output charm mass, bottom mass and all (evel small) crosssections make
4. Micromegas
gmake cd MSSM gmake main=create_process.c ... in the Fittino directory: cd micromegas adjust GNUMakefile: MICROMEGASDIR = <software_base_dir>/micromegas_2.4.5 gmake
5. superiso
edit Makefile: define C compiler and the path to Softsusy, SPheno, ... if you want to use them make slha.c
Finally: put symbolic links in the fittino directory
ln -s <software_base_dir>/SPheno-3.2.4/bin/SPheno SPheno ln -s <software_base_dir>/FeynHiggs-2.10.0/build/FeynHiggs FeynHiggs ln -s <software_base_dir>/superiso_v3.3/slha.x Superiso ln -s <software_base_dir>/fittino_install/micromegas/runmicromegas Micromegas ln -s <software_base_dir>/AfXn/lib/AstroFit AstrofitXn ln -s <software_base_dir>/fittino_install/fittino fittino ln -s <software_base_dir>/superiso_v3.3/slha.x slha.x ln -s <software_base_dir>/HiggsSignals-1.1.0/example_programs/HSwithSLHA