1 |
yilmaz |
1.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 |
edwenger |
1.4 |
# latest configurations
|
9 |
edwenger |
1.6 |
cvs co SimGeneral/MixingModule/python # for mixHiSignal_cff
|
10 |
|
|
cvs co SimGeneral/Configuration # for HiMixing_EventContent
|
11 |
|
|
cvs co Configuration/Generator # for hiSignal Generation
|
12 |
|
|
cvs co Configuration/StandardSequences # for DigiHiMix_cff
|
13 |
|
|
cvs co Configuration/EventContent # for EventContentHeavyIons
|
14 |
|
|
cvs co Configuration/PyReleaseValidation # for modified ConfigBuilder
|
15 |
edwenger |
1.4 |
|
16 |
|
|
# 330_pre4 features
|
17 |
edwenger |
1.6 |
cvs co -r V11-00-00 PhysicsTools/HepMCCandAlgos # HI GenParticleProducer
|
18 |
|
|
cvs co -r V06-00-00 DataFormats/HepMCCandidate # HI GenParticle format
|
19 |
yilmaz |
1.9 |
|
20 |
edwenger |
1.4 |
# HI Event Content
|
21 |
edwenger |
1.6 |
cvs co -r V00-00-05 RecoHI/Configuration # for modified RecoHI_EventContent_cff
|
22 |
edwenger |
1.10 |
cvs co -d Misc UserCode/edwenger/Misc
|
23 |
|
|
mv Misc/EventContentHeavyIons_cff.py Configuration/EventContent/python
|
24 |
|
|
mv Misc/HiMixing_EventContent_cff.py SimGeneral/Configuration/python
|
25 |
|
|
mv Misc/ConfigBuilder.py Configuration/PyReleaseValidation/python
|
26 |
edwenger |
1.11 |
mv Misc/MixingHiSignal_cff.py Configuration/StandardSequences/python
|
27 |
edwenger |
1.10 |
|
28 |
|
|
# HI Tracking Particles
|
29 |
edwenger |
1.11 |
cvs co -r V04-00-01 SimGeneral/TrackingAnalysis # HI TrackingTruthProducer
|
30 |
|
|
#mv Misc/TrackerPSimHitSelector.cc SimGeneral/TrackingAnalysis/src # fix for PSimHit pointer (fixed in V04-00-01)
|
31 |
edwenger |
1.10 |
mv Misc/DigiHiMix_cff.py Configuration/StandardSequences/python # Digi sequence using hiTrackingParticles
|
32 |
|
|
rm -r Misc
|
33 |
|
|
|
34 |
|
|
# HI GenParticle and Mixing configurations
|
35 |
|
|
cvs co -d Utilities UserCode/CmsHi/Utilities
|
36 |
|
|
cp Utilities/python/HiGenParticles_cfi.py PhysicsTools/HepMCCandAlgos/python/ # hiGenParticles
|
37 |
|
|
cp Utilities/python/mixHiSignal_cff.py SimGeneral/MixingModule/python/ # with hiGenParticles
|
38 |
|
|
rm -r Utilities
|
39 |
|
|
|
40 |
|
|
# Random numbers for HI Mixing
|
41 |
edwenger |
1.11 |
cvs co -r V00-11-13 IOMC/RandomEngine/python # hiSignal and hiSignalG4SimHits added
|
42 |
yilmaz |
1.7 |
|
43 |
yilmaz |
1.2 |
# Stuff needed for PAT and Jet Analysis
|
44 |
|
|
cvs co UserCode/CmsHi/JetAnalysis
|
45 |
|
|
cvs co UserCode/CmsHi/HiPatAlgos
|
46 |
|
|
mv UserCode/CmsHi .
|
47 |
|
|
rm -r UserCode
|
48 |
|
|
|
49 |
yilmaz |
1.1 |
scramv1 b
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
|