1 |
#!/bin/sh
|
2 |
|
3 |
export CVSROOT=:gserver:cmscvs.cern.ch:/cvs_server/repositories/CMSSW
|
4 |
|
5 |
cd $CMSSW_BASE/src
|
6 |
eval `scramv1 ru -sh`
|
7 |
|
8 |
# latest configurations
|
9 |
cvs co Configuration/Generator # for hiSignal GEN configs
|
10 |
addpkg Configuration/PyReleaseValidation # for modified ConfigBuilder
|
11 |
|
12 |
cvs co -d Misc UserCode/edwenger/Misc
|
13 |
mv Misc/ConfigBuilder.py Configuration/PyReleaseValidation/python #hiTrackingParticles without DigiHiMix
|
14 |
rm -r Misc
|
15 |
|
16 |
# Stuff needed for PAT and Jet Analysis
|
17 |
#cvs co UserCode/CmsHi/JetAnalysis
|
18 |
#cvs co UserCode/CmsHi/HiPatAlgos
|
19 |
#mv UserCode/CmsHi .
|
20 |
#rm -r UserCode
|
21 |
|
22 |
scramv1 b
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|