Difference between revisions of "Combined Reconstruction Recipes"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
* MDT and TileCal combined | * MDT and TileCal combined | ||
− | First of all, make yourselves a working directory: | + | First of all, make yourselves a working directory on afs: |
+ | * log on to ''lxplus'': | ||
+ | <font color = red> <tt>ssh <username>@lxplus.cern.ch </tt></font> | ||
+ | * create a work area (here called ''11.2.0'') | ||
+ | <font color = red><tt>mkdir 11.2.0</tt> | ||
+ | |||
+ | <tt>cd 11.2.0/</tt></font> | ||
+ | * create a ''requirements'' file which should look like this: | ||
+ | <pre> | ||
+ | set CMTSITE CERN | ||
+ | |||
+ | macro ATLAS_DIST_AREA "/afs/cern.ch/atlas/software/dist" | ||
+ | macro ATLAS_RELEASE "11.2.0" | ||
+ | |||
+ | use AtlasSettings v* $(ATLAS_DIST_AREA) | ||
+ | |||
+ | path_remove CMTPATH ${PWD} | ||
+ | path_prepend CMTPATH ${PWD} | ||
+ | </pre> | ||
+ | * build your CMT environment: | ||
+ | <font color = red><tt>source /afs/cern.ch/sw/contrib/CMT/v1r18p20050501/mgr/setup.(c)sh</tt> | ||
+ | |||
+ | <tt>cmt config</tt> | ||
+ | |||
+ | <tt>source setup.(c)sh -tag=opt</tt></font> | ||
+ | |||
+ | * the last command line must be typed in every time you open a new terminal. | ||
==Reconstruction with MDTs== | ==Reconstruction with MDTs== |
Revision as of 10:51, 14 February 2006
Reconstruction of Cosmic muons
This Wiki gives a recipe to reconstruct cosmic muons in release 11.2.0 in three different ways:
- MDT only
- TileCal only
- MDT and TileCal combined
First of all, make yourselves a working directory on afs:
- log on to lxplus:
ssh <username>@lxplus.cern.ch
- create a work area (here called 11.2.0)
mkdir 11.2.0
cd 11.2.0/
- create a requirements file which should look like this:
set CMTSITE CERN macro ATLAS_DIST_AREA "/afs/cern.ch/atlas/software/dist" macro ATLAS_RELEASE "11.2.0" use AtlasSettings v* $(ATLAS_DIST_AREA) path_remove CMTPATH ${PWD} path_prepend CMTPATH ${PWD}
- build your CMT environment:
source /afs/cern.ch/sw/contrib/CMT/v1r18p20050501/mgr/setup.(c)sh
cmt config
source setup.(c)sh -tag=opt
- the last command line must be typed in every time you open a new terminal.