OtherSoftware

From T2B Wiki
Revision as of 12:28, 26 August 2015 by Maintenance script (talk | contribs) (Created page with " The T2 hosts many software that are packaged with specific versions of CMSSW but that can be used in a stand alone mode. A tool was designed to easily find what is available ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The T2 hosts many software that are packaged with specific versions of CMSSW but that can be used in a stand alone mode. A tool was designed to easily find what is available and which versions can be used.
To list all the available software:

/swmgrs/cmss/soft.pl --list

Most used software are specific version of gcc that are needed, or a root or geant4 version. To find all the available gcc versions:


/swmgrs/cmss/soft.pl --versions gcc


Now, to get a given version of gcc (4.6.2 in this example) :


/swmgrs/cmss/soft.pl --load gcc/4.6.2

This prints the full path of the init.sh that you have to source to get the desired version of gcc :


source /cvmfs/cms.cern.ch/slc6_amd64_gcc462/external/gcc/4.6.2/etc/profile.d/init.sh


Let's now check the version of gfortran :


gfortran --version
GNU Fortran (GCC) 4.6.2


Template:TracNotice