1 |
#!/bin/bash
|
2 |
# $Id: setup.sh,v 1.10 2008/11/06 13:10:50 sixie Exp $
|
3 |
|
4 |
if test -z $CMSSW_VERSION; then
|
5 |
echo "Need cmssw project area setup!";
|
6 |
exit 1;
|
7 |
fi
|
8 |
|
9 |
majver=`echo $CMSSW_VERSION | cut -d_ -f 2`;
|
10 |
minver=`echo $CMSSW_VERSION | cut -d_ -f 3`;
|
11 |
patver=`echo $CMSSW_VERSION | cut -d_ -f 4`;
|
12 |
majver=`expr $majver \* 1000000`;
|
13 |
minver=`expr $minver \* 1000`;
|
14 |
version=`expr $majver + $minver`;
|
15 |
version=`expr $version + $patver`;
|
16 |
|
17 |
echo "Setup called for $CMSSW_VERSION ($version)";
|
18 |
|
19 |
cd $CMSSW_BASE/src;
|
20 |
|
21 |
if test $version -lt 2001008; then
|
22 |
echo "Nothing to be done, exiting";
|
23 |
exit 1;
|
24 |
fi
|
25 |
|
26 |
case $version in
|
27 |
(2001008 | 2001009 | 2001010 | 2001011 )
|
28 |
|
29 |
cvs co -r V01-06-05 CondFormats/JetMETObjects;
|
30 |
cvs co -r V01-08-10 JetMETCorrections/Configuration;
|
31 |
cvs co -r V02-09-00 JetMETCorrections/Modules;
|
32 |
|
33 |
#things related to Calo+track Jets
|
34 |
cvs co -r V01-07-11 JetMETCorrections/Algorithms
|
35 |
cvs co -r V03-02-04 JetMETCorrections/JetPlusTrack
|
36 |
#this is needed to do JetPlusTrack on AOD. we will not use this
|
37 |
#for now since we run on RECO for now
|
38 |
#cvs co -r V01-04-03 RecoJets/JetAssociationAlgorithms
|
39 |
|
40 |
#to remove annoying Warning messages for the jet to vertex associator.
|
41 |
cvs co JetMETCorrections/JetVertexAssociation;
|
42 |
TMP=`mktemp`;
|
43 |
cat JetMETCorrections/JetVertexAssociation/src/JetVertexMain.cc |
|
44 |
sed -e 's/else std::cout << \"\[Jets\] JetVertexAssociation: Warning\! problems for Algo = 2: possible division by zero ..\" << std::endl;//' > $TMP;
|
45 |
mv $TMP JetMETCorrections/JetVertexAssociation/src/JetVertexMain.cc
|
46 |
|
47 |
#for jurassic isolation veto FIX. Note that this should be fixed
|
48 |
#in the release at some point so this will be unnecessary then
|
49 |
#and should be removed at that point in time.
|
50 |
#These tags were suggested by Sam Harper
|
51 |
if test $version -eq 2001011; then
|
52 |
cvs co -rV00-02-00 RecoEgamma/EgammaIsolationAlgos
|
53 |
cvs co -rV00-02-04 EgammaAnalysis/EgammaIsolationProducers
|
54 |
cvs co -rV01-01-06 PhysicsTools/IsolationAlgos
|
55 |
cvs co -rV00-16-07 DataFormats/RecoCandidate
|
56 |
fi
|
57 |
|
58 |
;;
|
59 |
*)
|
60 |
echo "Nothing known about this version, exiting";
|
61 |
exit 1;
|
62 |
;;
|
63 |
esac
|
64 |
|
65 |
if test -z $MIT_VERS; then
|
66 |
echo " "
|
67 |
echo "Production setup not executed: MIT_VERS is not setup."
|
68 |
echo " "
|
69 |
else
|
70 |
echo " "
|
71 |
echo "Entering production setup. Looking for MIT_VERS: $MIT_VERS dependencies."
|
72 |
echo " "
|
73 |
case $MIT_VERS in
|
74 |
005)
|
75 |
MitAna/scripts/setup-pixelLessTracking.sh
|
76 |
;;
|
77 |
*)
|
78 |
echo "Nothing special to be done for this version";
|
79 |
;;
|
80 |
esac
|
81 |
fi
|
82 |
|
83 |
echo "Setup done; you probably want to compile your project area now";
|