r170 - 27 Dec 2014 - 19:23:13 - VictoriaSanchezMartinezYou are here: TWiki >  Main Web  >  TWikiUsers > VictoriaSanchezMartinez



led-purpleVictoriaSanchezMartinez - IFIC - ... in construction ...



Preparing your Digital Certificate

The followings steps should be done to install your certificate in the shell (see the twiki page WorkBookStartingGrid ) either of LXPLUS or AFS AtlasDataProcessingAtIFIC2015:
~> ssh -X vicsanma@ui06.ific.uv.es            ### ssh -X vsanchez@lxplus.cern.ch
~> cd $HOME
~> mkdir -p .globus
~> cd .globus
~> cp /*/myCertificate.p12 .
~> openssl pkcs12 -in myCertificate.p12 -clcerts -nokeys -out usercert.pem
~> openssl pkcs12 -in myCertificate.p12 -nocerts -out userkey.pem
~> chmod 400 userkey.pem
~> chmod 444 usercert.pem
~> source /afs/cern.ch/project/gd/LCG-share/current/etc/profile.d/grid_env.sh
~> voms-proxy-init -voms atlas
usercert.pem is the certificate file and userkey.pem is the private key file.

This certificate myCertificate.p12 should be copied across to your laptop and imported into the browser:

  • Preferences (or Tools) → Advanced → Encryption → View Certificates → Your Certificates → Import
To confirm that the browser certificate is installed and correctly working, we will confirm that you are able to log into AMI (click on Account Validation). If you have any expired certificates this is a good time to remove them - but be careful not to remove current ones.



Athena

The Athena framework (AthenaFramework-I and AthenaFramework-II) is an enhanced version of the Gaudi framework that was originally developed by the LHCb experiment, but is now a common ATLAS-LHCb project and is in use by several other experiments including GLAST and HARP. Athena and Gaudi are concrete realizations of a component-based architecture (also called Gaudi) which was designed for a wide range of physics data-processing applications. The fact that it is component-based has allowed flexibility in developing both a range of shared components and, where appropriate, components that are specific to the particular experiment and better meet its particular requirements.

The ATLAS software is divided into packages, and these are managed through the use of a configuration management tool, CMT. This is used to copy ("check out") code from the main ATLAS repository and handle linking and compilation.

You can check all the athena's releases here:

~> ssh -X vicsanma@ui06.ific.uv.es  
~> ls $VO_ATLAS_SW_DIR/software/
(Beware: before was ~> ls ${VO_ATLAS_SW_DIR}/prod/releases ).


Athena 15.X.Y

Valid for Athena's releases like 15.X.Y. You must prepare your account, in the following way. Note that the cmthome directory does not have to be in $HOME, it can be in any sub-directory, but if so you will need to amend all the following examples accordingly.
~> ssh -X vicsanma@ui06.ific.uv.es
~> cd $HOME
~> mkdir -p AthenaTestArea/15.X.Y/cmthome
~> cd AthenaTestArea/15.X.Y/cmthome
~> emacs requirements &   ###this file is shown below
~> source $VO_ATLAS_SW_DIR/software/15.X.Y/cmtsite/setup.sh
~> cmt config
~> 
~> cd $HOME
~> source AthenaTestArea/15.X.Y/cmthome/setup.sh -tag=15.X.Y,setup
~> 
~> echo $TestArea
~> cd $TestArea
~> cmt show versions PhysicsAnalysis/AnalysisCommon/UserAnalysis   
~> cmt co -r UserAnalysis-00-15-04 PhysicsAnalysis/AnalysisCommon/UserAnalysis
~> cd PhysicsAnalysis/AnalysisCommon/UserAnalysis/cmt/
~> cmt config
~> source setup.sh
~> cmt make

The requirements file is like this:

#---------------------------------------------------------------------
set CMTSITE STANDALONE #establecer el cmtsite???#
###old###set SITEROOT ${VO_ATLAS_SW_DIR}/prod/releases/rel_15-24/
set SITEROOT ${VO_ATLAS_SW_DIR}/software/15.X.Y/
macro ATLAS_DIST_AREA ${SITEROOT}
macro ATLAS_TEST_AREA ${HOME}/AthenaTestArea

apply_tag projectArea
macro SITE_PROJECT_AREA ${SITEROOT}
macro EXTERNAL_PROJECT_AREA ${SITEROOT}
apply_tag simpleTest

set SVNROOT svn+ssh://vsanchez@svn.cern.ch/reps/atlasoff
apply_tag noSVNROOT

use AtlasLogin AtlasLogin-* $(ATLAS_DIST_AREA)
#set CMTCONFIG i686-slc5-gcc43-opt
#---------------------------------------------------------------------

Every time you close and open the terminal, you must set up Athena, doing:

~> cd $HOME
~> source AthenaTestArea/15.X.Y/cmthome/setup.sh -tag=15.X.Y,setup
~> cd $TestArea
~> cd PhysicsAnalysis/AnalysisCommon/UserAnalysis/run


Athena 16.X.Y

Valid for Athena's releases like 16.X.Y.
~> cd $HOME
~> source $VO_ATLAS_SW_DIR/local/setup.sh
~> mkdir -p AthenaTestArea/16.X.Y      ###old###export AtlasSetup=${VO_ATLAS_SW_DIR}/prod/releases/rel_16-2/AtlasSetup
~> export AtlasSetup=${VO_ATLAS_SW_DIR}/software/16.X.Y/AtlasSetup
~> alias asetup='source $AtlasSetup/scripts/asetup.sh'
~> asetup 16.X.Y --testarea=$HOME/AthenaTestArea --svnroot=svn+ssh://vsanchez@svn.cern.ch/reps/atlasoff --multitest --dbrelease "<latest>"
~> 
~> cd $TestArea
~> pwd
~> cmt co -r UserAnalysis-00-15-04 PhysicsAnalysis/AnalysisCommon/UserAnalysis
~> cd PhysicsAnalysis/AnalysisCommon/UserAnalysis/cmt/
~> cmt config
~> source setup.sh
~> cmt make
~> 
~> cd ../run
~> get_files AnalysisSkeleton_topOptions_AutoConfig.py   ###equivalent to: cp ../share/AnalysisSkeleton_topOptions_AutoConfig.py .

Every time you close and open the terminal, you must set up Athena, doing:

~> cd $HOME
~> source /lustre/ific.uv.es/sw/atlas/local/setup.sh
~> export AtlasSetup=${VO_ATLAS_SW_DIR}/software/16.X.Y/AtlasSetup
~> alias asetup='source $AtlasSetup/scripts/asetup.sh'
~> asetup 16.X.Y --testarea=$HOME/AthenaTestArea --svnroot=svn+ssh://vsanchez@svn.cern.ch/reps/atlasoff --multitest 
~> cd $TestArea/PhysicsAnalysis/AnalysisCommon/UserAnalysis/run/



MadGraph


Twikis, webs, information about MadGraph:

ToDo MadGraph is a matrix element creator. Given the process, MadGraph automatically creates the amplitudes for all the relevant subprocesses and produces the mappings for the integration over the phase space. This process-dependent information is packaged into MadEvent, and a self containted code is produced that can be downloaded from the web site and allows the user to calculate cross sections and to obtain unweighted events. Alternatively, events can be also generated directly from the web1, by filling a form and letting the code run over our clusters. Once the events have been generated - event information, (e.g. particle id's, momenta, spin, color connections) is stored in the “Les Houches Event Files” (LHEF) format -, may be passed directly to a shower Monte Carlo program (interface is available for Pythia) or be used as inputs for combined matrix element-shower calculations. A series of standard plots and a rootfile contaning the parton level events are also automatically created for events generated over the web. Optionally, rootfiles containing event at pythia or after a generic simulation of a detector (PGS) can be available.

The code is written in Fortran77 and has been developed using the g77 compiler under Linux. The code is parallel in nature and it is optimized to run on a PC farm. At present, the supported PBS batch managing systems are respectively Torque, proPBS and Condor at Italian, American and Belgian clusters. Process specific codes are self contained and therefore do not need any external library. In principle the matrix-element creator can handle any user's request, however, they are limitations of the code are related to the maximum number of final state QCD particles. Currently, the package is limited to ten thousands diagrams per subprocess. So, for example, W+5 jets which has been calculated, is close to its practical limit.


MadGraph4

MadGraph4. Once this package is compiled, it can be used in any other directory. This can be useful if you want to use the GRID. It was possible to install MG4 in local computers (evaluQ) and after run the package in the UserInterface's temporal, but it didn't achieve to work at MAC laptop.
~> ssh -X vicsanma@evaluQ.ific.uv.es
~> cd $DIRECTORY      ###directory where you want to work
~> gunzip MG4_vX.Y.Z.tar.gz
~> tar -xvf MG4_vX.Y.Z.tar
~> cd MG4_vX.Y.Z/
~> make
~> mkdir myTest
~> cp -a Template/ myTest/
~> cd myTest/
~> emacs Cards/proc_card.dat &      ###put the process which you want
~> bin/newprocess      ###it may take a few minutes...
~> emacs Cards/param_card.dat &      ###modify some properties like mass, width, couplings...
~> emacs Cards/run_card.dat &      ###modify some properties like Nºevents, Ebeam, pdf, scales, cuts...
~> bin/generate_events
     0 
     testName
The most important info after the generation is in testName_unweighted_events.lhe.gz, within the folder Events/. In this folder, there are other file named testName_banner.txt, which is a summary about all cards.dat.
In HTML/ folder, you can find a crossx.html file, which contains more information and feynman diagrams of the process.


MadGraph5

MadGraph5. In order to use MG5 in Ubuntu, we must have Python 2.6.5 y gcc4.4.3 (for now, we couldn't make it work at UserInterface). With MG5 we can work in two different ways:
1) Like we worked with MG4
~> ssh -X vicsanma@evaluQ.ific.uv.es
~> cd $DIRECTORY      ###directory where you want to work
~> gunzip MadGraph5_vX.Y.Z.tar.gz
~> tar -xvf MadGraph5_vX.Y.Z.tar
~> 
~> cd MadGraph5_vX.Y.Z/
~> mkdir myTest
~> cp -a Template/ myTest/
~> cd myTest/
~> emacs Cards/proc_card.dat &      ###put the process which you want
~> bin/newprocess      ###it may take a few minutes...
~> emacs Cards/param_card.dat &      ###modify some properties like mass, width, couplings...
~> emacs Cards/run_card.dat &      ###modify some properties like Nºevents, Ebeam, pdf, scales, cuts...
~> bin/generate_events
     0 
     testName


2) From bin/mg5

~> ssh -X vicsanma@evaluQ.ific.uv.es
~> cd $DIRECTORY      ###directory where you want to work
~> gunzip MG4_vX.Y.Z.tar.gz
~> tar -xvf MG4_vX.Y.Z.tar
~> 
~> cd MG4_vX.Y.Z/
~> bin/mg5
mg5> import model MODEL   ###you pick the MODEL
mg5> generate p p > t t~   ###PROCESS you want
mg5> output myTest   ###
mg5> exit
~> cd myTest/
~> emacs Cards/param_card.dat &
~> emacs Cards/run_card.dat &
~> bin/generate_events
     0 
     testName


LHApdf

To use mstw2008lo in MadGraph5, the users needs to install LHAPDF (see twiki page Using mstw2008lo in MadGraph5 ), which is recommended by MC12.
~> cd $DIRECTORY
~> gunzip lhapdf-5.8.8b1.tar.gz
~> tar -xvf lhapdf-5.8.8b1.tar
~> cd lhapdf-5.8.8b1
~> ./configure
~> make
~> sudo make install
~> bin/lhapdf-getdata cteq
~> bin/lhapdf-getdata mstw
The users must check if all the libraries which they want have been copied correctly. If not, they should copy them manually. With these steps, LHAPDF has been installed right!
~> cd $DIRECTORY/MadGraph5_v1_3_33
~> mkdir myTest
~> cd myTest
~> cp -a Template/ myTest/
~> mv Template/* .
~> rm -r Template/
~> more README.lhapdf       ## Follow these steps to get the libraries which you need
~> emacs Cards/proc_card_mg5.dat &
~> bin/newprocess_mg5
~> emacs Cards/param_card.dat &
~> emacs Cards/run_card.dat &
In your run_card.dat, you have to put the following :
# 'cteq6l1' = pdlabel ! PDF set
'lhapdf' = pdlabel ! PDF set
21000 = lhaid ! PDF number used ONLY for LHAPDF

NOTE: in folder lhapdf_5.8.8b1/ you can find a file name PDFsets.index. This file shows the correspondence between lhapdf's name and code.


right Table1 - This table compares the cross sections for samples with the same pdf but different center of mass energy. The samples have been generated with MadGraph5.v1.3.33
(the generated process was pp > o1 > tt~, where o1=KKG with m=1TeV):

lhaPDF
ECM (TeV)
cross-section
plot
cteq6l1
7
3.3689 pb mass
mstw2008lo68cl (21000)
7
3.8424 pb
cteq6l1
8
4.8214 pb mass
mstw2008lo68cl (21000)
8
5.4768 pb


right Table2 - This table shows the matching at different center of mass energy. The samples have been generated with MadGraph5.v1.3.33
(the generated process was pp > o1 > tt~ (+) pp > o1 > tt~g, where o1=KKG with m=1TeV):

lhaPDF
ECM (TeV)
cross-section
Matching
plot
mstw2008lo68cl (21000)
7
5.9556 pb 0 graph_CrossSection-Matching
mstw2008lo68cl (21000)
7
6.9326 pb 1
mstw2008lo68cl (21000)
7
xxx pb 2
mstw2008lo68cl (21000)
7
6.9160 pb 3
mstw2008lo68cl (21000)
8
8.6002 pb 0
mstw2008lo68cl (21000)
8
10.0930 pb 1
mstw2008lo68cl (21000)
8
xxx pb 2
mstw2008lo68cl (21000)
8
10.0450 pb 3


KKgluon with MSTW2008

KKgluon samples has been generated in three final states: dileptonic, semileptonic and allHadronic. In the following table, you can get the cards.dat used at the generation with MadGraph5_v1.3.33 & lhapdf_5.8.8b1(pdf=mstw2008) (using topBSM_v4.tar):

right Table3.1

Dilepton
Semilepton
Hadronic
generic
pp > o1 >tt~
t > b w+, w+ > l+ vl
t~ > b~ w-, w- > l- vl~
pp > o1 >tt~
t > b w+, w+ > l+ vl
t~ > b~ w-, w- > j j
pp > o1 >tt~
t > b w+, w+ > j j
t~ > b~ w-, w- > j j
pp > o1 >tt~
proc_card_KKGdilepton.dat proc_card_KKGsemilepton.dat proc_card_KKGhadronic.dat proc_card_KKG.dat
param_card_KKG.dat
run_card_KKG.dat
(Beware: this cards are for Ecm=7TeV!!!)


right Table3.2 - This table shows some information obtained in the generation at 7TeV and 8TeV (ptj,pta,ptl=0 and ptjmax,ptamax,ptlmax=infinity):

mass (GeV)
LHE sample name
# events
cross-section
mass plot
1000
kkgluon_MadGraph_dilepton_1000_7TeV
10k
0.2135 pb
mass
kkgluon_MadGraph_semilepton_1000_7TeV
10k
1.2812 pb
mass
kkgluon_MadGraph_hadronic_1000_7TeV
10k
1.9182 pb
mass
kkgluon_MadGraph_generic_1000_7TeV
10k
3.8427 pb
mass
kkgluon_MadGraph_dilepton_1000_8TeV
10k
0.3037 pb
mass
kkgluon_MadGraph_semilepton_1000_8TeV
10k
1.8290 pb
mass
kkgluon_MadGraph_hadronic_1000_8TeV
10k
2.7386 pb
mass
kkgluon_MadGraph_generic_1000_8TeV
10k
5.4812 pb
mass


right Table3.3 - This table shows some information obtained in the generation of pp > o1 > tt~ process with pdf=mstw2008 (ptj,pta,ptl=0 and ptjmax,ptamax,ptlmax=infinity):

mass (GeV)
LHE sample name
# events
cross-section
mass plot
proc
param
run
2200
test_KKG_2200_7TeV_unweighted.lhe
10k
0.044007 pb
mass
proc
param
run
2400
test_KKG_2400_7TeV_unweighted.lhe
10k
0.025679 pb
mass
2600
test_KKG_2600_7TeV_unweighted.lhe
10k
0.015819 pb
mass
2200
test_KKG_2200_8TeV_unweighted.lhe
10k
0.076869 pb
mass
2400
test_KKG_2400_8TeV_unweighted.lhe
10k
0.044984 pb
mass
2600
test_KKG_2600_8TeV_unweighted.lhe
10k
0.027520 pb
mass
(Beware: you have to change the values of mass, widht, scales and beam energy within the param_card.dat and run_card.dat).


NEW Matching Study

All the samples have been generation with MadGraph5_v1.3.33 & lhapdf_5.8.8b1(pdf=mstw2008).
This is an example of how the matching value affects at the cross section. To carry out this study, we've used different processes, all of them at semileptonic final state.

right Table4.1 - This table shows the different processes generated:

name
Process
more info
test1
A: p p > o1, o1 > t t~
B: p p > o1, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
C (ISR): p p > o1 j, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1 j, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
D (FSR): p p > o1, o1 > t t~ j, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~ j, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
 
test2
A: p p > o1, o1 > t t~
B: p p > o1, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
C (ISR): p p > o1 j, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1 j, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
D (FSR): p p > o1, o1 > t t~ j, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~ j, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
ΔRjj~0.4
pT(jet)~10GeV
Matching switched off (ickkw=0)
test3
A: p p > o1, o1 > t t~
B: p p > o1, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
C (ISR): p p > o1 j, o1 > t t~, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1 j, o1 > t t~, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
D (FSR): p p > o1, o1 > t t~ j, (t > W+ b, W+ > l+ vl), (t~ > W- b~, W- > j j)
add: p p > o1, o1 > t t~ j, (t > W+ b, W+ > j j), (t~ > W- b~, W- > l- vl~)
ΔRjj~0.4
pT(jet)~10GeV
Matching switched on (ickkw=1)

right Table4.2 - This table shows the MATCHING STUDY using different initial process, for a KKG mass=500GeV, Ecm=8TeV and xqcut=10GeV. The param_card.dat used is the same for all the samples (param_card.dat). At MadGraph, jet has been defined as j = g u c d s u~ c~ d~ s~:

LHE sample name
# events
Cross-section
Top_mass plot
#TruthJets pT>20GeV
TruthJets plot
ControlCard
test1-A 10K 81.9790 mass xxx plot card
test1-B 10K 163.9800 mass xxx plot card
test1-C 10K 113.0400 mass xxx plot card
test1-D 10K 9.9047 mass xxx plot card
test2-A 10K 81.9460 mass xxx plot card
test2-B 10K 163.9100 mass xxx plot card
test2-C 10K 112.8400 mass xxx plot card
test2-D 10K 9.8637 mass xxx plot card
test3-A 10K 82.016 mass xxx plot card
test3-B 10K 163.980 mass xxx plot card
test3-C 10K 182.630 mass xxx plot card
test3-D 10K 11.352 mass xxx plot card
(you can find the ControlCards at /afs/cern.ch/user/v/vsanchez/public/Matching/ControlCards)


OLD Matching Study

This is an example of how the matching value affects at the cross section. To carry out this study, we've used differents processes:

right Table5.1 - This table shows the different initial process used:

name
Process
more info
test1
pp>o1>tt~  
test2
A: pp>o1>tt~ > bblvjj
B: pp>o1>tt~ > bbjjjj
 
test3
A: pp>o1>tt~ > bblvjj
B: pp>o1>tt~ > bblvjjg
C: pp>o1>tt~g > bblvjjg
ΔRjj~0.4
pT(jet)~10GeV
matching=0
test4
A: pp>o1>tt~ > bblvjj
B: pp>o1>tt~ > bblvjjg
C: pp>o1>tt~g > bblvjjg
ΔRjj~0.4
pT(jet)~10GeV
matching=1

right Table5.2 - This table shows the MATCHING STUDY using different initial process, for a KKG mass=1600GeV and Ecm=7TeV. The param_card.dat used is the same for all the samples (param_card.dat). At MadGraph, jet has been defined as j = g u c d s u~ c~ d~ s~:

LHE sample name
# events
Cross-section
Top_mass plot
#TruthJets pT>20GeV
TruthJets plot
proc
run
test1
10k
0.30868 pb
mass
7.237
jets
proc
run
test2_A
10k
0.15471 pb
mass
6.818
jets
proc
test2_B
10k
0.15492 pb
mass
7.825
jets
proc
test2_A+B
10k
0.30915 pb
mass
7.381
jets
proc
test3_A
10k
0.11528 pb
mass
6.970
jets
proc
run
test3_B
10k
0.01205 pb
mass
7.308
jets
proc
test3_C
10k
0.11423 pb
mass
7.546
jets
proc
test3_A+C
10k
0.22870 pb
mass
7.256
jets
proc
test3_A+B+C
10k
0.24036 pb
mass
7.255
jets
proc
test4_A
10k
0.11473 pb
mass
6.954
jets
proc
run
test4_B
10k
0.02739 pb
mass
7.258
jets
proc
test4_C
10k
0.18694 pb
mass
7.558
jets
proc
test4_A+C
10k
0.30140 pb
mass
7.322
jets
proc
test4_A+B+C
10k
0.32897 pb
mass
7.336
jets
proc

right Table5.3 - This table shows the MATCHING STUDY using different initial process, for a KKG mass=1600GeV and Ecm=8TeV. The param_card.dat used is the same for all the samples (param_card.dat). At MadGraph, jet has been defined as j = g u c d s u~ c~ d~ s~:

LHE sample name
# events
Cross-section
Top_mass plot
#TruthJets pT>20GeV
TruthJets plot
proc
run
test1
10k
0.50108 pb
mass
7.372
jets
proc
run
test2_A
10k
0.25089 pb
mass
6.945
jets
proc
test2_B
10k
0.24933 pb
mass
7.974
jets
proc
test2_A+B
10k
0.49918 pb
mass
7.491
jets
proc
test3_A
10k
0.18230 pb
mass
7.178
jets
proc
run
test3_B
10k
0.01844 pb
mass
7.470
jets
proc
test3_C
10k
0.19143 pb
mass
7.772
jets
proc
test3_A+C
10k
0.37555 pb
mass
7.470
jets
proc
test3_A+B+C
10k
0.39362 pb
mass
7.379
jets
proc
test4_A
10k
0.18296 pb
mass
7.118
jets
proc
run
test4_B
10k
0.04227 pb
mass
7.482
jets
proc
test4_C
10k
0.31355 pb
mass
7.811
jets
proc
test4_A+C
10k
0.49627 pb
mass
7.492
jets
proc
test4_A+B+C
10k
0.54072 pb
mass
7.558
jets
proc

right Table5.4 - This table shows the MATCHING STUDY using different initial process, for a KKG mass=500GeV and Ecm=8TeV. The param_card.dat used is the same for all the samples (param_card.dat). At MadGraph, jet has been defined as j = g u c d s u~ c~ d~ s~:

LHE sample name
# events
Cross-section
Top_mass plot
#TruthJets pT>20GeV
TruthJets plot
proc
run
test1
10k
82.025 pb
mass
7.
jets
proc
run
test2_A
10k
40.970 pb
mass
7.
jets
proc
test2_B
10k
40.990 pb
mass
7.
jets
proc
test2_A+B
10k
81.927 pb
mass
7.
jets
proc
test3_A
10k
38.770 pb
mass
7.
jets
proc
run
test3_B
10k
7.666 pb
mass
7.
jets
proc
test3_C
10k
21.986 pb
mass
7.
jets
proc
test3_A+C
10k
60.823 pb
mass
7.
jets
proc
test3_A+B+C
10k
68.471 pb
mass
7.
jets
proc
test4_A
10k
38.837 pb
mass
7.
jets
proc
run
test4_B
10k
14.982 pb
mass
7.
jets
proc
test4_C
10k
35.192 pb
mass
7.
jets
proc
test4_A+C
10k
74.185 pb
mass
7.
jets
proc
test4_A+B+C
10k
89.046 pb
mass
7.
jets
proc

To obtain the Truth Jets with pT>20GeV plot, you have to get both files classTRUTH.C and classTRUTH.h, and run them over the my.truth.ntup.root file as follow:

~> cd FOLDER   ###this folder contains my.truth.ntup.root and classTRUTH.*
~> root -l -q classTRUTH.C+
~> root
root> .L classTRUTH.C+
root> classTRUTH* t = new classTRUTH; t->Loop();
root> ### save canvas3.C
root> ### save canvas4.C


right KKG's codes:

  • MadGraph: 6000048.
  • Pythia: 5100021.

Validation process (mc12)

To verify that the LHEF samples have been made properly and the new JobOption works, we have to run Generate_trf.py (it takes you around 10min) and Reco_trf.py (it takes you around 25min) over the file.tar.gz (this is the unweighted.lhe file) and use your JobOption. With this script you can obtain the my.truth.ntup.root... With this package you can obtain the my.truth.ntup.root and the validation plots...

right To generate the new JOs files: get this two files (script and template) and run "source New_JO_cambiarNombre.sh". Thus, you'll obtain all the JOs files for the kkg.

right README:

~> Beware!!! log in to @lxplus440 (it works with SL5)
~> Download the package validation_MC12_vsm.tar and untar it.
~> Copy JobOptions file, group file (with extension .events and .tar.gz) inside the validation folder (this will be your work directory).
~> Be sure inside the folder the following files exist:
         parse_evgen_log.py
         MC12JobOpts-00-04-85_v0.tar.gz 
            (http://atlas-computing.web.cern.ch/atlas-computing/links/kitsDirectory/EvgenJobOpts/)
            (more /cvmfs/atlas.cern.ch/repo/sw/Generators/MC12JobOptions/tag   -->   MC12JobOptions-00-10-78/)
~> Open runGenerationValidation.sh file and choose the suitable variables:
         Athena's release (17.2.4.8 for these files and scripts)
         (ls /cvmfs/atlas.cern.ch/repo/sw/software/x86_64-slc6-gcc47-opt/17.8.0/AtlasProduction/17.8.0.3/)
         Mass ($MASS)
         RunNumber ($RUNNUMBER)
         JobOptions name ($JOBOPTIONS)
         GroupFile name ($GroupFile)
         Work directory name ($WORKdirectory)
~> Inside the work directory execute "source runGenerationValidation.sh"
~> Finally, you'll obtain several plots...

~> ls /cvmfs/atlas.cern.ch/repo/sw/software/17.2.4/AtlasProduction/17.2.4.8/Generators/EvgenJobTransforms/scripts/
### Generate_trf.py
~> ls /cvmfs/atlas.cern.ch/repo/sw/software/17.2.4/AtlasProduction/17.2.4.8/Generators/MC12JobOptions/
### TODO  bin  cmt   common   gencontrol  i686-slc5-gcc43-opt  share
~> ls /cvmfs/atlas.cern.ch/repo/sw/software/17.2.4/AtlasProduction/17.2.4.8/InstallArea/jobOptions/MC12JobOptions/
### Pythia8_AU2_MSTW2008LO_Common.py ...
~> ls /cvmfs/atlas.cern.ch/repo/sw/software/x86_64-slc5-gcc43-opt/17.2.4/AtlasProduction/17.2.4.8/InstallArea/share/bin/Generate_trf.py
~> ls /cvmfs/atlas.cern.ch/repo/sw/software/x86_64-slc5-gcc43-opt/17.2.4/AtlasProduction/17.2.4.8/InstallArea/share/bin/Reco_trf.py
~> 
      JOBOPTSEARCHPATH=/cvmfs/atlas.cern.ch/repo/sw/Generators/MC12JobOptions/latest/common:$JOBOPTSEARCHPATH
      JOBOPTSEARCHPATH=/cvmfs/atlas.cern.ch/repo/sw/Generators/MC12JobOptions/latest/gencontrol:$JOBOPTSEARCHPATH
      JOBOPTSEARCHPATH=/cvmfs/atlas.cern.ch/repo/sw/Generators/MC12JobOptions/latest/share/DSID182xxx:$JOBOPTSEARCHPATH

right README for SLC6: for now it doesn't work!!! The only supported MC12 evgen release is 17.2.X.Y. Also, for MC12 reco it is 17.2.X.Y again or 17.3.X.Y for upgrade samples...




MC & DATA - produced samples

FALTA Input files generated with MadGraph5 and different PDFs.
See our private ProducedSamples generated by Exotics Physics Group at IFIC with differents MadGraph's releases.

MC11 - KKgluon

These the produced KKgluon-MC-samples have these features:
  • MG_ME_V4.4.57
  • PDF set = cteq6l1
  • Ecm=7TeV
  • ptj=20; pta,ptl=10 and ptjmax,ptamax,ptlmax=infinity (1d5)

right Table6.1 - This table shows some features about the KKgluon samples generated with MadGraph4.

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
mass plot
control card
ID
2250
344.25
test_2250_1_KKGLUON.lhe
10k
0.031173 pb
mass
ControlCard
158768
2500
382.50
test_2500_1_KKGLUON.lhe
10k
0.016377 pb
mass
ControlCard
158769


These the produced KKgluon-MC-samples have these features:

  • MadGraph5_v1.3.33
  • PDF set = cteq6l1
  • Ecm=7TeV
  • ptj=20; pta,ptl=10 and ptjmax,ptamax,ptlmax=infinity (1d5)

right Table6.2 - This table shows some features about the KKgluon samples. The control_card.dat is a summary about the proc_card.dat, param_card.dat and run_card.dat used in the production. You can run this script (script) to get all the samples.

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
mass plot
control card
ID
2250
344.25
test_cteq6l_1_7TeV_mass2250_KKG.lhe
10k
0.033437 pb
mass
ControlCard
158768
2500
382.50
test_cteq6l_1_7TeV_mass2500_KKG.lhe
10k
0.017576 pb
mass
ControlCard
158769


MC12 - KKgluon

All the produced KKgluon-MC-samples have these features:
  • MadGraph5_v1.3.33
  • lhapdf_5.8.8b1(pdf=mstw2008 - lhapdf=21000)
  • Ecm=8TeV
  • ptj,pta,ptl=0 and ptjmax,ptamax,ptlmax=infinity


right Table7.1 - This table shows some features about the KKgluon samples. The ControlCard.txt is a summary about the proc_card.dat, param_card.dat and run_card.dat used in the production. You can run these two scripts (script1 and script2) to get all the samples, but you need to use these templates (KKG_run_card_template.dat and KKG_param_card_template.dat):

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
mass plot
control card
ID
400
61.20
test_mstw2008_1_8TeV_mass400_KKG.lhe
100k
112.1900 pb
mass
ControlCard
182764
500
76.50
test_mstw2008_1_8TeV_mass500_KKG.lhe
10k
81.9270 pb
mass
ControlCard
115550
600
91.80
test_mstw2008_1_8TeV_mass600_KKG.lhe
10k
45.0410 pb
mass
ControlCard
115551
700
107.10
test_mstw2008_1_8TeV_mass700_KKG.lhe
10k
25.1950 pb
mass
ControlCard
115552
800
122.40
test_mstw2008_1_8TeV_mass800_KKG.lhe
10k
14.6300 pb
mass
ControlCard
115553
900
137.70
test_mstw2008_1_8TeV_mass900_KKG.lhe
10k
8.8067 pb
mass
ControlCard
119318
1000
153.00
test_mstw2008_1_8TeV_mass1000_KKG.lhe
10k
5.4726 pb
mass
ControlCard
115554
1150
175.95
test_mstw2008_1_8TeV_mass1150_KKG.lhe
10k
2.8164 pb
mass
ControlCard
119319
1300
198.90
test_mstw2008_1_8TeV_mass1300_KKG.lhe
10k
1.5233 pb
mass
ControlCard
115555
1600
244.80
test_mstw2008_1_8TeV_mass1600_KKG.lhe
10k
0.5004 pb
mass
ControlCard
115556
1800
275.40
test_mstw2008_1_8TeV_mass1800_KKG.lhe
10k
0.2556 pb
mass
ControlCard
115799
2000
306.00
test_mstw2008_1_8TeV_mass2000_KKG.lhe
10k
0.1369 pb
mass
ControlCard
119582
2250
344.25
test_mstw2008_1_8TeV_mass2250_KKG.lhe
10k
0.0670 pb
mass
ControlCard
158768
2500
382.50
test_mstw2008_1_8TeV_mass2500_KKG.lhe
10k
0.0351 pb
mass
ControlCard
158769
2750
420.75
test_mstw2008_1_8TeV_mass2750_KKG.lhe
10k
0.019606 pb
mass
ControlCard
180575
3000
459.00
test_mstw2008_1_8TeV_mass3000_KKG.lhe
10k
0.012001 pb
mass
ControlCard
180576
The cross section versus mass of the kkg is shown below:
graph_CrossSection_kkg.jpg
The "peak" is related to the mass threshold effect.


right Table7.2 - This table contains some samples of KKgluon with different widths. The KKGancho_proc_card_mg5.dat is the same for all. You can run this script to get all the samples, but you need to use these templates (KKGancho_run_card_template.dat and KKGancho_param_card_template.dat):

mass (GeV)
%
width (GeV)
LHE sample name
# events
cross-section
mass plot
control card
ID
1000
10
100
test_mstw2008_1_8TeV_mass1000_width10percent.lhe
10k
3.6050 pb
mass
ControlCard
145583
1000
15
150
test_mstw2008_1_8TeV_mass1000_width15percent.lhe
10k
5.3682 pb
mass
ControlCard
158765
1000
20
200
test_mstw2008_1_8TeV_mass1000_width20percent.lhe
10k
7.0784 pb
mass
ControlCard
145584
1000
25
250
test_mstw2008_1_8TeV_mass1000_width25percent.lhe
10k
8.7165 pb
mass
ControlCard
145585
1000
30
300
test_mstw2008_1_8TeV_mass1000_width30percent.lhe
10k
10.2740 pb
mass
ControlCard
145586
1000
35
350
test_mstw2008_1_8TeV_mass1000_width35percent.lhe
10k
11.7380 pb
mass
ControlCard
158766
1000
40
400
test_mstw2008_1_8TeV_mass1000_width40percent.lhe
10k
13.1130 pb
mass
ControlCard
158767
2000
10
200
test_mstw2008_1_8TeV_mass2000_width10percent.lhe
10k
0.08034 pb
mass
ControlCard
158770
2000
15
300
test_mstw2008_1_8TeV_mass2000_width15percent.lhe
10k
0.13348 pb
mass
ControlCard
158771
2000
20
400
test_mstw2008_1_8TeV_mass2000_width20percent.lhe
10k
0.19297 pb
mass
ControlCard
158772
2000
25
500
test_mstw2008_1_8TeV_mass2000_width25percent.lhe
10k
0.25696 pb
mass
ControlCard
158773
2000
30
600
test_mstw2008_1_8TeV_mass2000_width30percent.lhe
10k
0.32422 pb
mass
ControlCard
158774
2000
35
700
test_mstw2008_1_8TeV_mass2000_width35percent.lhe
10k
0.39249 pb
mass
ControlCard
158775
2000
40
800
test_mstw2008_1_8TeV_mass2000_width40percent.lhe
10k
0.46125 pb
mass
ControlCard
158776
3000
10
300
test_mstw2008_1_8TeV_mass3000_width10percent.lhe
10k
0.005713 pb
mass
ControlCard
180384
3000
15
450
test_mstw2008_1_8TeV_mass3000_width15percent.lhe
10k
0.011298 pb
mass
ControlCard
180385
3000
20
600
test_mstw2008_1_8TeV_mass3000_width20percent.lhe
10k
0.018360 pb
mass
ControlCard
180386
3000
25
750
test_mstw2008_1_8TeV_mass3000_width25percent.lhe
10k
0.026759 pb
mass
ControlCard
180387
3000
30
900
test_mstw2008_1_8TeV_mass3000_width30percent.lhe
10k
0.036133 pb
mass
ControlCard
180388
3000
35
1050
test_mstw2008_1_8TeV_mass3000_width35percent.lhe
10k
0.046204 pb
mass
ControlCard
180389
3000
40
1200
test_mstw2008_1_8TeV_mass3000_width40percent.lhe
10k
0.056807 pb
mass
ControlCard
180390


right Table7.3 - This table contains some samples of nominal KKgluon with 1TeV mass. The generated process contains the semileptonic final state
(p p > o1 > t t~, (t > b w+, w+ > l+ vl), (t~ > b~ w-, w- > j j)). Here you can find the cards.dat used (proc_card.dat, run_card.dat & param_card.dat). The produced samples have these features:

  • MadGraph5_v1.3.33
  • lhapdf_5.8.8b1(pdf=mstw2008 - lhapdf=21000)
  • Ecm=8TeV
  • ptj,pta,ptl=0 and ptjmax,ptamax,ptlmax=infinity

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
mass plot
control card
ID
1000
100
test_mstw2008_1_8TeV_mass1000_KKG_semileptonic_matching0.lhe
10k
1.8333 pb
mass
ControlCard
???
1000
100
test_mstw2008_1_8TeV_mass1000_KKG_semileptonic_matching1.lhe
10k
1.8333 pb
mass
ControlCard
???
2000
100
test_mstw2008_1_8TeV_mass2000_KKG_semileptonic_matching0.lhe
10k
xxx pb
mass
ControlCard
???
2000
100
test_mstw2008_1_8TeV_mass2000_KKG_semileptonic_matching1.lhe
10k
xxx pb
mass
ControlCard
???
1000
153
test_kkg1000.lhe
10k
1.8261 pb
mass
ControlCard
???

KKgluon

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
control card
800
122.40
test_kkg800.lhe
100k
4.8842 pb
ControlCard
1000
153.00
test_kkg1000.lhe
100k
1.8261 pb
ControlCard
1500
229.50
test_kkg1500.lhe
100k
0.23824 pb
ControlCard
2000
306.00
test_kkg2000.lhe
100k
0.045717 pb
ControlCard
2500
382.50
test_kkg2500.lhe
100k
0.011685 pb
ControlCard

Graviton

mass (GeV)
width (GeV)
LHE sample name
# events
cross-section
control card
800
9.6
test_kkg1000.lhe
10k
2826.9 pb
ControlCard
1000
12
test_grav800.lhe
100k
1109 pb
ControlCard
1500
18
test_grav1500.lhe
100k
140.70 pb
ControlCard
2000
24
test_grav2000.lhe
100k
22.44 pb
ControlCard
2500
30
test_grav2500.lhe
100k
3.9513 pb
ControlCard



Running the Full Chain

In order to produce Monte Carlo events on which to perform analysis, a Full Chain of steps needs to be taken from Generation to the production of Analysis Object Data (AOD) as shown in the diagram below. Because of the time this process takes (especially the Simulation stage) it is unlikely that most users will produce many events themselves but will rely on centrally produced events. However limited test samples of specific channels may be necessary from time to time. Each of these stages is described separately but they can be combined if required. (See the ATLAS Computing Workbook twiki )

You can short circuit the Full Chain by using Atlfast, which provides a fast simulation of the whole chain by taking the generated events and smearing them to produce AOD directly. Atlfast can in fact take input from any of the event generator, simulation, digitization, or Event Summary Data (ESD) files.

picture_FullChain.jpg
Schematic representation of the Full Chain Monte Carlo production

Here are some commands to run the Full Chain step by step (at IFIC). This example is fot Athena's release 15.6.14.13:
Preparing the work environment:

~> ssh -X vicsanma@ui06.ific.uv.es   
~> source AthenaTestArea/15.6.14.13/cmthome/setup.sh -tag=AtlasProduction,15.6.14.13,setup            ###setup Athena  
~> get_files Evgen_trf.py         ### if you want Atlfast use EvgenCorrAtlfast_trf.py
~> get_files MC10.115554.Pythia_MadGraph_KKGluonTTbar_1000.py         ### here, the jobOptions which you need
~> get_files AtlasG4_trf.py
~> get_files Digi_trf.py
~> get_files Reco_trf.py
To make the steps more cleanly and avoid mistakes, you can create five folders, one for each step, and then, put the corresponding file *_trf.py inside.

1. GENERATION: If you need to know what means every argument, you can run ~> Evgen_trf.py -h and then see all the options.

~> Evgen_trf.py --omitvalidation=testEventMinMax ecmEnergy=7000. runNumber=115554 firstEvent=1 maxEvents=10 randomSeed=1324354657 jobConfig=MC10.115554.Pythia_MadGraph_KKGluonTTbar_1000.py outputEvgenFile=pythia.pool.root inputgeneratorfile=group10.phys-gener.madgraph.115554.KKGluonTTbar1000.TXT.v1._00001.tar > athena_gen.out 2>&1

2. SIMULATION:

~> AtlasG4_trf.py inputEvgenFile=pythia.pool.root outputHitsFile=g4hits.pool.root maxEvents=10 skipEvents=0 randomSeed=1234 geometryVersion=ATLAS-GEO-16-00-00 conditionsTag=OFLCOND-SIM-BS7T-02  > athena_sim.out 2>&1

3. DIGITIZATION:

~> Digi_trf.py inputHitsFile=g4hits.pool.root outputRDOFile=g4digi.pool.root maxEvents=10 skipEvents=0 geometryVersion=ATLAS-GEO-16-00-00 conditionsTag=OFLCOND-DR-BS7T-ANom-16  > athena_digi.out 2>&1

4. RECONSTRUCTION:

~> Reco_trf.py  inputRDOFile=g4digi.pool.root outputESDFile=esd.pool.root maxEvents=10 skipEvents=0 geometryVersion=ATLAS-GEO-16-00-00 conditionsTag=OFLCOND-DR-BS7T-ANom-16 autoConfiguration='everything'  > athena_rec.out 2>&1

5. PRODUCTION-AOD:

~> Reco_trf.py  inputESDFile=esd.pool.root outputAODFile=aod.pool.root maxEvents=10 skipEvents=0 geometryVersion=ATLAS-GEO-16-00-00 conditionsTag=OFLCOND-DR-BS7T-ANom-16 autoConfiguration='everything' > athena_aod.out 2>&1



Creating a dataset

Since we have generated all our samples with MadGraph, we must change some particle's code as codes in madGraph are differents from codes in Pythia. The file's name should describe what it contains, for instance:

1. Changing the particles's code. You have to replace all the KKG's codes in the file.lhe. You can do it in two ways:

  • From an editor:
         ~> emacs test_kkg_unweighted_events.lhe &   
         ### Edit -> Search -> Replace
         ### 6000048 EnterKey 5100021 EnterKey !key
         ### close emacs
  • From a shell:
         ~> sed 's/6000048/5100021/' test_kkg_unweighted_events.lhe > new_test_kkg_unweighted_events.lhe
         ~> rm test_kkg_unweighted_events.lhe
         ~> mv new_test_kkg_unweighted_events.lhe test_kkg_unweighted_events.lhe

2. Changing the file's name and extension. The following steps should be performed.

~> mv test_kkg_unweighted_events.lhe group10.phys-gener.madgraph.115554.KKGluonTTbar1000.TXT.v1._00001.events
   ###this last name is inside the jobOptions MC10.115554.Pythia_MadGraph_KKGluonTTbar_1000.py
~> tar -cvf group10.phys-gener.madgraph.115554.KKGluonTTbar1000.TXT.v1._00001.tar group10.phys-gener.madgraph.115554.KKGluonTTbar1000.TXT.v1._00001.events
   ###be careful:   tar -cvf NAME.tar NAME.events   (no NAME.events.tar)

3. Creating a dataset. To create our dataset we are going to use DQ2, so we need to set up:

~> ssh -X vicsanma@ui06.ific.uv.es
~> voms-proxy-init -voms atlas   ### or    voms-proxy-init -voms atlas:/atlas/phys-gener/Role=production
~> source /afs/cern.ch/atlas/offline/external/GRID/ddm/DQ2Clients/setup.sh 

We change the value of local_site variable to store the dataset in IFIC's disk:

~> echo $DQ2_LOCAL_SITE_ID      ### probably is CERN-PROD_SCRATCHDISK
~> export DQ2_LOCAL_SITE_ID=IFIC-LCG2_SCRATCHDISK   ### IFIC-LCG2_LOCALGROUPDISK

To make tasks easier, let's create some variables:

~> NAME="group.phys-gener.${GENERATOR}.${DATASETNUMBER}.${DESCRIPTION}.TXT.${mcXY}_${VERSION}"
~> DATASET=${NAME}_i11
~> CONTAINER=${NAME}/
~> directory=/lustre/ific.uv.es/grid/atlas/t3/vicsanma/ALLsamples
~> uploaddirectory=${directory}/samples_kkg

We create the dataset in this way:

~> dq2-put -s ${uploaddirectory} ${DATASET}

To ensure that there is no problems with the file's names and datasets, we have to run a validation file (the file can be downloaded here here):

~> python validate_ds2eos.py ${NAME}

If all went fine, we can freeze the dataset (Make sure that when the dataset had been freezed, it must be like COMPLETE):

~> dq2-freeze-dataset ${DATASET}

Now we should register the dataset and the container (the latter is optional):

~> dq2-register-subscription ${DATASET} CERN-PROD_PHYS-GENER
~> dq2-register-container ${CONTAINER}
~> dq2-register-datasets-container ${CONTAINER} ${DATASET}
and it is ready for use. If all is right, you will able to get it with DQ2.


  • If you want to add others datasets inside the container above:
~> dq2-register-datasets-container ${CONTAINER} Dataset_1 Dataset_2 Dataset_3

  • If you need to remove a dataset from only a site:
~> dq2-delete-replicas DatasetName Site

  • If you need to completely erase a dataset:
~> dq2-delete-replicas DatasetName Site

  • If you need to change the dataset name you should do the following (beware, this step don't remove the old dataset, it creates a new one):
~> dq2-put -D OLDdatasetName NEWdatasetName
~> 0-20   ###here you have to put the files what you want (In this case, there are 20files and I want 20files)
~> y   ### yes
~> y   ###yes



Using a Good Run List to handle real DATA and MC samples

This steps have been done @lxplus.cern.ch. I tried to do it at IFIC, but I didn't get it. (The last time these steps were done correctly was on 29/04/2012)

Getting the suitable GRL

If you are confused about which GRLs have to use with which version of the data, you can take a look at the table in the following Good Run List for Analysis twiki. When you had found the suitable GRL, look at this list and search more information in GRL_LUMI.txt about your GRL (periods, runs, luminosity...).

For example, if you are working with quark tops, you can "download" the GRL from:

YourUserName@ui06.ific.uv.es~> /afs/cern.ch/user/a/atlasdqm/www/grlgen/Top/

Setting up CMT

(This subsection can be skipped without loss of generality in case a release has already been setup.)
1. Create a cmthome directory in your home directory:
~> ssh -X vsanchez@lxplus.cern.ch
~> cd $HOME
~> mkdir -p GoodRunList/cmthome
~> cd GoodRunList/cmthome


2. Make your login requirements file - use your favorite editor to create a file called requirements and paste these lines within it:

#---------------------------------------------------------------------
set CMTSITE CERN
set SITEROOT /afs/cern.ch
set ATLAS_DIST_AREA ${SITEROOT}/atlas/software/dist
macro ATLAS_TEST_AREA ${HOME}/GoodRunList/scratch0/15.6.4
apply_tag 32
apply_tag AtlasOffline
apply_tag setupCMT
apply_tag setup
apply_tag oneTest
apply_tag simpleTest
use AtlasLogin AtlasLogin-* $(ATLAS_DIST_AREA)
#---------------------------------------------------------------------

Note: Line 4 (macro ATLAS_TEST_AREA): Change the path so that it points to wherever you want to work. If you have scratch space (by default at CERN this is called scratch0) it is recommended that you work in there. Of course if you want to make a new directory inside this space, that is fine.

Save and exit this file


3. Now set up CMT as follows:

~> source /afs/cern.ch/sw/contrib/CMT/v1r20p20090520/mgr/setup.sh
~> cmt config


4. And then make a working directory:

~> mkdir -p $HOME/GoodRunList/scratch0/15.6.4

You only have to do this once.


5. Now you can setup release 15.6.4

~> cd $HOME
~> source GoodRunList/cmthome/setup.sh -tag=15.6.4,32

This you will have to do every time you want to use your new release. See also the next section.

Now check your environment:

~> echo $CMTPATH
At cern this should look something like: /afs/cern.ch/user/InitialOfYourUserName/YourUserName/GoodRunList/scratch0/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasOffline/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasSimulation/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasAnalysis/15.6.4:/afs/cern.ch/atlas/software/dist/AtlasSettings/AtlasSettings-03-02-37/share:/afs/cern.ch/atlas/software/builds/AtlasTrigger/15.6.4:/afs/cern.ch/atlas/project/tdaq/prod/dqm-common/dqm-common-00-10-00:/afs/cern.ch/atlas/software/builds/AtlasReconstruction/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasEvent/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasConditions/15.6.4:/afs/cern.ch/atlas/software/builds/AtlasCore/15.6.4:/afs/cern.ch/atlas/project/tdaq/prod/tdaq-common/tdaq-common-01-14-00:/afs/cern.ch/atlas/software/builds/DetCommon/15.6.4:/afs/cern.ch/atlas/offline/external/GAUDI/v20r4p6:/afs/cern.ch/atlas/offline/external/LCGCMT/LCGCMT_56c

Then:

~> echo $TestArea
This should look like: /afs/cern.ch/user/InitialOfYourUserName/YourUserName/GoodRunList/scratch0/15.6.4


6. Go into your $TestArea, now we can install the good run list package(s).


Setting up the good run list package(s)


1. Go to your $TestArea:
~> cd $HOME
~> source GoodRunList/cmthome/setup.sh -tag=15.6.4,32
~> cd $TestArea


2. Now we check out the recommended version of the good run list and related packages. If you are working on a remote installation, do not forget to get a Kerberos ticket:

~> kinit -5 CernUserName      ###put the password once.
Then checkout the packages you may need. The latest tags are given at Recommanded release and tags.
~> cmt co -r GoodRunsListsUser-00-00-12 DataQuality/GoodRunsListsUser
~> cmt co -r GoodRunsLists-00-00-96 DataQuality/GoodRunsLists
~> cmt co -r LumiBlockComps-00-02-11 LumiBlock/LumiBlockComps
~> cmt co -r CoolRunQuery-00-03-35 Database/CoolRunQuery


3. Now we can compile:

~> cd $TestArea/Database/CoolRunQuery/cmt/
~> cmt make; source setup.sh
~> cd $TestArea/DataQuality/GoodRunsLists/cmt/
~> cmt make; source setup.sh
~> cd $TestArea/LumiBlock/LumiBlockComps/cmt/
~> cmt make; source setup.sh
~> cd $TestArea/DataQuality/GoodRunsListsUser/cmt/
~> cmt make; source setup.sh


4. It is useful to make the script init.sh. Open your favorite editor to create init.sh, and insert the lines:

~> echo $TestArea
~> source $HOME/GoodRunList/cmthome/setup.sh -tag=15.6.4,32
~> source $TestArea/Database/CoolRunQuery/cmt/setup.sh
~> source $TestArea/DataQuality/GoodRunsLists/cmt/setup.sh
~> source $TestArea/LumiBlock/LumiBlockComps/cmt/setup.sh
~> source $TestArea/DataQuality/GoodRunsListsUser/cmt/setup.sh
~> cd $TestArea
Then do source init.sh. This you will have to do every time you want to use the good run list packages in a new shell.


5. You are now ready to use the good run list tools!



t-tbar asymmetries

Useful information, paper, notes... about ttbar asymmetry:
  • Workshop@CERN - Top physics: from charge asymmetry to the boosted regime (from 02/05/2012 to 04/05/2012).
  • Summary of the article A charge asymmetry measurement for high mass t-tbar pairs (ATL-COM-PHYS-2012-786, not yet published) - slides in English or Spanish.



At hadron colliders, perturbative QCD predicts that the top quark will be emitted preferentialy in the direction of the incoming valence quark and the antitop in the direction of the incoming sea antiquark. Although ttbar production is predicted to be symmetric under charge conjugation at leading order (LO), at next-to-leading order (NLO) the processes q qbar → t tbar g (FSR) and q g → t tbar q (ISR) exhibit a small asymmetry in the differential distributions of the top and antitop, due to interference between initial (ISR) and final (FSR) state gluon emission (negative contribution to our signal, ttbar+1jet). The q qbar → t tbar process also possesses an asymmetry due to the interference between the Born and box diagrams (positive contribution, ttbar+0jet).

graph_diagrams_asymmetry.jpg
At the LHC with pp collisions, the dominant mechanism for ttbar production is the gg fusion process which is charge symmetric, while the ttbar production via qqbar or qg is small in most of the phase space.
gg_vs_qqbar.jpg
Nevertheless, QCD predicts a small excess of centrally produced antitop quark while top quarks are produced, on average, at higher absolute rapidities (on average, the valence quark carries a larger momentum fraction than the sea antiquark). With top quark preferentially emitted in the direction of the initial quars in the ttbar rest frame, the boost into the laboratory frame drives the top mainly in the forward or backward directions, while antitops are kept more in the central region, as it can see at the following figure:
distributions_t_tbar.jpg
The ttbar cross section at high invariant masses is sensitive to new physics (BSM) and sets constraints on the masses and couplings of any new particles giving rise to the ttbar asymmetry. The lepton charge asymmetry may be affected also by BSM physics, and several authors have propose this as a sensitive probe of the top quark polarization.


To compute the charge asymmetry, is necessary to count tops (or leptons) with specific properties (i.e, rapidity positive or negative, high transverse momentum...). If this count is done at central region of detector, it arises a net charge asymmetry called central charge asymmetry. This is defined as follows:

eq.AcYc.jpg
where y is the rapidity.

However, ATLAS and CMS collaboration use the charge asymmetry:

eq.Ac+-.jpg
where η is the pseudorapidity. The SM prediction for this asymmetry at the LHC is about 1%:
eq.Ac+-_SMprediction.jpg

If we want to measure the lepton charge asymmetry, using leptons produced at top decay, we must take care because the central charge asymmetry can only be measured in dileptonic final states.

More... ToDo



Handling real data samples

Let's suppose we want to work with real data samples, stored in our computer. One of these samples is called data_K_mu.ntuple_all.root. For our analysis, we need to work event by event, so we need to generate a skeleton analysis class for the tree inside the sample. The following steps should be done:


MakeClass

I stand in the folder where the sample is stored.
~> cd folderSamples/
~> root data_K_mu.ntuple_all.root
root [1] t2->MakeClass("ClassVIKI");         ### ClassVIKI.C and ClassVIKI.h are the files created by this function
root [2] .L ClassVIKI.C
root [3] ClassVIKI* t = new ClassVIKI;
root [4] t->Loop();
root [5] .q
Then, you have to modify ClassVIKI.C and declare the new variables in ClassVIKI.h. Every time you modify ClassVIKI.C, you have to compile and:
~> emacs ClassVIKI.C &
~> emacs ClassVIKI.h &
~> root -l -q ClassVIKI.C+
~> 
~> root
root [1] .L ClassVIKI.C
root [2] ClassVIKI* t = new ClassVIKI; t->Loop();


Running Ganga locally

right Let's suppose we want to work with real data samples, stored in T3 space at IFIC. As the samples are very heavy, we need to run Ganga locally. The procedure is similar to above, but is needed to repeat all the steps (it doesn't work doing "CopyPaste" the file.C and file.h).
~> ssh -X vicsanma@ui06.ific.uv.es
~> cd /lustre/ific.uv.es/grid/atlas/t3/vicsanma/Asymmetries
~> root data_K_mu.ntuple_all.root
root [1] t2->MakeClass("ClassVIKIui");         ### ClassVIKIui.C and ClassVIKIui.h are the files created by this function
root [2] .L ClassVIKIui.C
root [3] ClassVIKIui* t = new ClassVIKIui;
root [4] t->Loop();
root [5] .q

~> emacs ClassVIKIui.C &     
   ### let's save the histogram/canvas at the end of the file:
      c1->Write();///LNA
      c1->Update();  
      c1->SaveSource("canvas_ASYMMETRYhistui.C");
~> emacs ClassVIKIui.h &
~> root -l -q ClassVIKIui.C+

~> root
root [1] .L ClassVIKIui.C
root [2] ClassVIKIui* t = new ClassVIKIui; t->Loop();
If so far works, we are able to continue...


right Inside the ClassVIKI.h the following lines should be modified:
TFile f = (TFile)gROOT->GetListOfFiles()->FindObject("/lustre/ific.uv.es/grid/atlas/t3/sgonzale/elena/data_E_mu.ntuple_all.root");
if (f) {
f = new TFile("/lustre/ific.uv.es/grid/atlas/t3/sgonzale/elena/data_E_mu.ntuple_all.root");
}


right Is necessary to create a Root and Ganga scripts, called ClassVIKI.h and ClassVIKI.h, for instance.

The ejecutar.C file is like this:

###---------------------------------------------------------------------
#include <iostream>
#include <string>

void ejecutar()
{
  gROOT->ProcessLine(".L ClassVIKIui.C");
  ClassVIKIui* t = new ClassVIKIui; t->Loop();                 
}
###---------------------------------------------------------------------


The LocalRoot.py file is like this:

###---------------------------------------------------------------------
j = Job()
j.name='Exercice Root'

j.application=Root()
j.application.script='ejecutar.C'
j.application.version='5.30.01'
j.inputsandbox=['ClassVIKIui.C','ClassVIKIui_C.so','ClassVIKIui_C.d','ClassVIKIui.h']

j.outputsandbox=['output.test.root']

j.backend=Local()

j.submit()
###---------------------------------------------------------------------


right Now we are able to run our scripts, doing the following:

### set up Root
~> source /lustre/ific.uv.es/sw/ific/sw/root/5.30.01/slc5_amd64_gcc41/root/bin/thisroot.sh

### set up Ganga
~> source /afs/ific.uv.es/project/atlas/software/ganga/install/etc/setup-atlas.sh  
~> export GANGA_CONFIG_PATH=GangaAtlas/Atlas.ini

~> root -l -q ClassVIKI.C+
~> ganga LocalRoot.py

~> ganga
In [1]: jobs
In [2]: jobs(XYZ).peek('stderr','more')      ###to see the out errors
In [3]: jobs(XYZ).peek('stdout','more')      ###to see the screen output
In [4]: jobs(XYZ).peek('output.test.root','root -l')
In [5]: ctrl+D
 
~> cd /afs/ific.uv.es/user/v/vicsanma/gangadir/workspace/vicsanma/LocalXML/XYZ/output/
~> root output.test.root
root [1] TBrowser V;
Inside output.test.root you can see the saved canvas (in this case, c1).


right If we've run several jobs with differents inputs (data samples), we can merge all the outputs output.test.root as follow:

~> cd DirectoryChoosed
~> hadd output.ALLtest.root $HOME/gangadir/workspace/vicsanma/LocalXML/*/output/output.test.root

My study

right Here is my study and the results:



TopRootCore & TopD3PDBoosted - 2011

4-Dec-2012...... Using TopRootCore modified by IFIC membership.
Twiki: TopD3PDBoosted twiki
Recommended: TopRootCoreRelease-11-00-00-05 or higher & TopD3PDBoosted-11-00-15
Community e-group: atlas-phys-top-d3pd-analysis@cernSPAMNOT.ch & atlas-phys-top-TopD3PDBoosted
Working at: lxplus303
Data & MC: 2011

right To download the TopRootCore package (release 11-00-00-05) we are going to work at lxplus. The necessary steps are:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh   ### This script is below
~> export CERN_USER=vsanchez
~> mkdir TopRootCore-2011 && cd TopRootCore-2011
~> svn co svn+ssh://$CERN_USER@svn.cern.ch/reps/atlasoff/PhysicsAnalysis/TopPhys/TopRootCoreRelease/tags/TopRootCoreRelease-11-00-00-05/ TopRootCoreRelease-11-00-00-05
~> cd
~> cd TopRootCore-2011/TopRootCoreRelease-11-00-00-05/share
~> ./build-all.sh
~> exit
Now TopRootCore package is ready to be used.


right Every time you want to use TopRootCore for data and mc 2011, you must set up this one:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> cd TopRootCore-2011/
~> cd RootCore/scripts/
~> source setup.sh
~> cd ../../


right To check TRC works correctly, we are going to run a litle example. I prefer to run code in a separate run directory, which we will need to setup with links to the data files and the binaries:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> cd TopRootCore-2011/
~> mkdir run && cd run
~> ln -s ../RootCore/data .
~> ln -s ../TopD3PDAnalysis/control .
~> ln -s ../TopD3PDAnalysis/bin .
~> cd ../
~> source RootCore/scripts/setup.sh  
~> 
~> cd PackageToCompile/
~> cd /cmt
~> make -f Makefile.RootCore


right We need to put the input file at file_list.txt.

~> cd TopRootCore-2011/run/   ###VERY IMPORTANT!!! Be sure you are at run/ directory when you run the cut-flow
~> cp control/file_list.txt .
~> emacs file_list.txt &   ### add the NTUP*.root name and NEW LINE!!!
~> 
~> DATASET=mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.NTUP_TOPBOOST.e835_s1272_s1274_r3043_r2993_p841_tid706226_00
~> FILE=NTUP_TOPBOOST.706226._000961.root.1
~> dq2-get -f $FILE $DATASET
~> 
~> mkdir OUT_mc11_$FILE
~> 
~> CutFlow -f file_list.txt -o OutputHistos_CutFlow.root -mcType mc11c -p control/settings.txt > outTable_CutFlow.txt
~> CutFlowCorr -f file_list.txt -o OutputHistos_CutFlowCorr.root -mcType mc11c -p control/settings.txt > outTable_CutFlowCorr.txt
~> 
~> mv OutputHistos_CutFlow.root OUT_mc11_$FILE/
~> mv outTable_CutFlow.txt OUT_mc11_$FILE/
~> mv OutputHistos_CutFlowCorr.root OUT_mc11_$FILE/
~> mv outTable_CutFlowCorr.txt OUT_mc11_$FILE/


right To download the TopD3PDBoosted-11-00-15 package (see the official twiki page and the releases), we have to run:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> export CERN_USER=vsanchez
~> cd TopRootCore-2011
###~> svn co svn+ssh://$CERN_USER@svn.cern.ch/reps/atlasoff/PhysicsAnalysis/TopPhys/TopD3PDBoosted/tags/TopD3PDBoosted-11-00-15/ TopD3PDBoosted
~> svn co svn+ssh://$CERN_USER@svn.cern.ch/reps/atlasoff/PhysicsAnalysis/TopPhys/TopD3PDBoosted/tags/TopD3PDBoosted-11-00-15/ TopD3PDBoosted-11-00-15
~> 
~> cd
###~> cd TopRootCore-2011/TopD3PDBoosted/FilesToReplace
~> cd TopRootCore-2011/TopD3PDBoosted-11-00-15/FilesToReplace
~> cd seedToolRelated_TopD3PDCorr
~> source cp.sh
~> cd ../TopAnalysisBase
~> source cp.sh
~> cd ../TopD3PDSelection
~> source cp.sh
~> 
~> cd
~> cd TopRootCore-2011/TopRootCoreRelease-11-00-00-05/share
~> ./build-all.sh
~> 
~> exit
and now, the TopRootCore (2011) package is ready to be used with the Boosted Selection.


Running BoostedCutFlow 2011


right In this web page you can find all the MC and DATA %NTUP_TOPBOOST% datasets. NTUP_TOPBOOST contains the standard NTUP_TOP variables, plus extra "boosted" variables and the LCW-calibrated clusters to enable jet creation on the fly. For a full list of the most recent branches, see Sept24_MC_branches.h and Sept24_data_branches.h (last updated: Oct 6, 2012, with D3PDs created using BoostedTopD3PDMaker-00-00-11)


right To run locally an example, you can get a file and save it at your lxplus' /tmp/:

~> ssh -Y vsanchez@lxplus303.cern.ch
~> cd /tmp/vsancehz/samples/MC
~> FILE=NTUP_TOPBOOST.706226._000961.root.1
~> DATASET=mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.NTUP_TOPBOOST.e835_s1272_s1274_r3043_r2993_p841_tid706226_00 
~> CONTAINER=mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.NTUP_TOPBOOST.e835_s1272_s1274_r3043_r2993_p841/
~> dq2-get -f $FILE $DATASET
           ### ~> FILE=NTUP_TOP.00993413._000001.root.1
           ### ~> DATASET=mc12_8TeV.105200.McAtNloJimmy_CT10_ttbar_LeptonFilter.merge.NTUP_TOP.e1193_s1469_s1470_r3542_r3549_p1230_tid00993413_00
           ### ~> CONTAINER=


right Every time you do some change in the files, you should compile the package: [@lxplus303]~>

~> cd TopRootCore-2011/
~> ./RootCore/scripts/compile.sh   ###to compile all the packages
~> 
~> cd TopRootCore-2011/FOLDERtoCOMPILE/cmt/
~> make -f Makefile.RootCore


right Running MC (NO correction) 2011:

~> BoostedCutFlow -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger
                            ### BoostedCutFlow -f mc_ch_file.txt -mcType mc12 -boost -rndmType debug
For getting spreadsheet numbers. Use -jetTrigger even if no trigger is apply. To “pick up” the Lumi blockes
  • Debug will operate with SeedTool, due to the replace of files. (no correction)
  • When jetTrigger is not specify then lepTrigger is the default one.


right Running Data (NO correction) 2011:

~> BoostedCutFlow -f mc_ch_file.txt -boost -jetTrigger


Running D3PD2MiniSLBoost 2011

right Running MC (with correction) 2011:
~> ./D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger
For getting spreadsheet numbers. Use -jetTrigger even if no trigger is apply.
  • Debug will operate with SeedTool, due to the replace of files. (no correction)
  • When jetTrigger is not specify then lepTrigger is the default one.

right Running Data 2011:

~> ./D3PD2MiniSLBoost -f Data_file_list.txt -boost -jetTrigger
  • This will produce a mini NTUP
  • Same as running on the grid.
  • Too add new variables go you, do it al a Root/MiniSLBoosted.cxx

VIKI



TopRootCore & TopD3PDBoosted - 2012

Works!!! 11-12-2012... Using TopRootCore modified by IFIC membership.
Recommended: TopRootCoreRelease-12-01-04 & TopD3PDBoosted-12-00-08
Community e-group: atlas-phys-top-d3pd-analysis@cernSPAMNOT.ch & atlas-phys-top-TopD3PDBoosted@cernSPAMNOT.ch
Working at: lxplus303
Data & MC: 2012

right To download the TopRootCore package we are going to work at lxplus. The necessary steps are:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh   ### This script is below
~> export CERN_USER=vsanchez
~> mkdir TopRootCore-2012 && cd TopRootCore-2012
~> TRCR=TopRootCoreRelease-12-01-17
~> svn co svn+ssh://$CERN_USER@svn.cern.ch/reps/atlasoff/PhysicsAnalysis/TopPhys/TopRootCoreRelease/tags/$TRCR/ $TRCR
~> cd
~> cd TopRootCore-2012/$TRCR/share
~> ./build-all.sh
~> exit
Now TopRootCore package is ready to be used.


The startRoot5-32.sh (or setRoot.sh) script is like this:
###---------------------------------------------------------------------
#!/bin/bash/

cd $HOME

source /afs/cern.ch/sw/lcg/contrib/gcc/4.3/x86_64-slc5/setup.sh
cd /afs/cern.ch/sw/lcg/app/releases/ROOT/5.32.00/x86_64-slc5-gcc43-opt/root/
source bin/thisroot.sh
#source /afs/cern.ch/sw/lcg/app/releases/ROOT/5.32.00/x86_64-slc5-gcc43-opt/root/bin/thisroot.sh

export LD_LIBRARY_PATH=$ROOTSYS/lib:$LD_LIBRARY_PATH
export PATH=$ROOTSYS/bin:$PATH

cd $HOME
###---------------------------------------------------------------------


right Every time you want to use TopRootCore, you must set up this one:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> cd TopRootCore-2012/
~> source RootCore/scripts/setup.sh

right Every time you download a new package, you must compile it as:

ssh -Y vsanchez@lxplus303.cern.ch
~> cd cd TopRootCore-2012/PackageToCompile/
~> cd /cmt
~> make -f Makefile.RootCore
If you need help, you can contact with the community e-group atlas-phys-top-d3pd-analysis@cernSPAMNOT.ch and atlas-phys-top-TopD3PDBoosted@cernSPAMNOT.ch, consists of members of TopWorkingGroup.


right To check TRC works correctly, we are going to run a litle example. I prefer to run code in a separate run directory, which we will need to setup with links to the data files and the binaries:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> cd TopRootCore-2012/
~> mkdir run && cd run
~> ln -s ../RootCore/data .
~> ln -s ../TopD3PDAnalysis/control .
~> ln -s ../TopD3PDAnalysis/bin .
~> cd ../
~> source RootCore/scripts/setup.sh  
~> 
~> 
~> cd TopRootCore-2012/run/   ###VERY IMPORTANT!!! Be sure you are at run/ directory when you run the cut-flow
~> cp control/file_list.txt .
~> emacs file_list.txt &   ### add the NTUP*.root name and NEW LINE!!!
~> 
~> mkdir SAMPLES && cd SAMPLES/
~> DATASET=mc12_8TeV.105200.McAtNloJimmy_CT10_ttbar_LeptonFilter.merge.NTUP_TOP.e1193_s1469_s1470_r3542_r3549_p1230_tid00993413_00
~> FILE=NTUP_TOP.00993413._000001.root.1
~> dq2-get -f $FILE $DATASET
~> 
~> cd ../
~> mkdir OUT_CutFlow_mc12_$FILE
~> 
~> CutFlow -f file_list.txt -o OutputHistos_CutFlow.root -mcType mc12 -p control/settings.txt > outTable_CutFlow.txt
~> mv OutputHistos_CutFlow.root OUT_CutFlow_mc12_$FILE/
~> mv outTable_CutFlow.txt OUT_CutFlow_mc12_$FILE/
~> 
~> CutFlowCorr -f file_list.txt -o OutputHistos_CutFlowCorr.root -mcType mc12 -p control/settings.txt > outTable_CutFlowCorr.txt
~> mv OutputHistos_CutFlowCorr.root OUT_CutFlow_mc12_$FILE/
~> mv outTable_CutFlowCorr.txt OUT_CutFlow_mc12_$FILE/
### VERY IMPORTANT!!! Be sure you are at run/ directory when you run the cut-flow.


right The TopD3PDBoosted package provides a single-lepton cut flow for the Boosted ttbar (%NTUPBOOST% D3PD's) event selection along with the reconstruction of the selected event to build the ttbar system. The package can be used by packing the D3PD information into the mini-EDM (event data model) defined in BoostedElectronSelection, BoostedMuonSelection, BoostedJetSelection and FatJetSelection classes.

Works!!! 11-Dec-2012 To download the TopD3PDBoosted-12-00-08 package (see the official twiki page and the releases), we have to run:

ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
### If you are using TopRootCoreRelease-12-01-04, TopD3PDBoosted-12-00-08 is INSIDE the package!
###~> cd TopRootCore-2012
###~> svn co svn+ssh://vsanchez@svn.cern.ch/reps/atlasoff/PhysicsAnalysis/TopPhys/TopD3PDBoosted/tags/TopD3PDBoosted-12-00-09 TopD3PDBoosted
###~> cd
###~> cd TopRootCore-2012/TopD3PDBoosted/FilesToReplace
###~> cd 2012/
###~> cd seedToolRelated_TopD3PDCorr
###~> source cp.sh
###~> cd ../TopAnalysisBase
###~> source cp.sh
###~> cd ../TopD3PDSelection2
###~> source cp.sh
###~> cd
~>
~> cd TopRootCore-2012/TopD3PDBoosted/FilesToReplace/2012/
~> source cpall.sh  ### WhichPeriod.cxx and WhichPeriodSvn.cxx must not be replaced. If these files are replaced, go into the folder which it contains, remove them and run "svn update"
~> cd 
~> 
~> cd TopRootCore-2012/TopRootCoreRelease-12-01-04/share
~> cp $HOME/TopRootCore-2012/TopD3PDBoosted/FilesToReplace/2012/packages.txt .
~> ./build-all.sh
~> exit
and now, the TopRootCore package is ready to be used with the Boosted Selection. Here, you can get also the following files: packages.txt, cp_TopD3PDSelection2.sh, cpall.sh, WhichPeriod_TRC.cxx.


right We need to create two new files (mc_ch_file.txt and Data_file_list.txt) with the full path of the files you want to run over, inside the run/ folder. Go at folder where are stored these files and do:

~> cd $HOME/samples
~> FILE=NTUP_TOP.00993413._000001.root.1
~> DATASET=mc12_8TeV.105200.McAtNloJimmy_CT10_ttbar_LeptonFilter.merge.NTUP_TOP.e1193_s1469_s1470_r3542_r3549_p1230_tid00993413_00
~> dq2-get -f $FILE $DATASET   ### or ### dq2-get -n1 $DATASET
~> 
~> DATASETmc=XXXXXXXXX
~> cd $DATASETmc
~> echo $PWD > mc_ch_file.txt
~> emacs mc_ch_file.txt &   ### add the NTUP*.root name and NEW LINE!!!
~> cp mc_ch_file.txt $HOME/TopRootCore-2012/run/
~> 
~> DATASETdata=XXXXXXXXX
~> cd $DATASETdata
~> echo $PWD > Data_file_list.txt
~> emacs Data_file_list.txt &   ### add the NTUP*.root name
~> cp Data_file_list.txt $HOME/TopRootCore-2012/run/


right To run locally an example, you can get a file and save it at your lxplus' /tmp/:

~> ssh -Y vsanchez@lxplus303.cern.ch
~> cd /tmp/vsancehz/samples/MC
~> FILE=NTUP_TOP.00993413._000001.root.1
~> DATASET=mc12_8TeV.105200.McAtNloJimmy_CT10_ttbar_LeptonFilter.merge.NTUP_TOP.e1193_s1469_s1470_r3542_r3549_p1230_tid00993413_00
~> dq2-get -f $FILE $DATASET   ### or ### dq2-get -n1 $DATASET
           ### ~> FILE=NTUP_TOPBOOST.706226._000961.root.1
           ### ~> DATASET=mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.NTUP_TOPBOOST.e835_s1272_s1274_r3043_r2993_p841_tid706226_00
           ### ~> CONTAINER=mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.NTUP_TOPBOOST.e835_s1272_s1274_r3043_r2993_p841/


right Every time you do some change in the files, you should compile the package: [@lxplus403]~>

~> cd TopRootCore-2012/
~> ./RootCore/scripts/compile.sh   ###to compile all the packages
~> 
~> cd TopRootCore-2012/FOLDERtoCOMPILE/cmt/
~> make -f Makefile.RootCore


Running BoostedCutFlow

right In this web page you can find all the MC and DATA %NTUP_TOPBOOST% datasets. NTUP_TOPBOOST contains the standard NTUP_TOP variables, plus extra "boosted" variables and the LCW-calibrated clusters to enable jet creation on the fly. For a full list of the most recent branches, see Sept24_MC_branches.h and Sept24_data_branches.h (last updated: Oct 6, 2012, with D3PDs created using BoostedTopD3PDMaker-00-00-11)

right Be sure you are at run/ folder and you've done the TRC and ROOT set up:

~> ssh -Y vsanchez@lxplus303.cern.ch
~> source startRoot5-32.sh
~> cd TopRootCore-2012
~> source RootCore/scripts/setup.sh
~> cd run/


right Running MC (NO correction):

~> BoostedCutFlow -f mc_ch_file.txt -boost -mcType mc12 -rndmType debug > OUTscreen.txt
### BoostedCutFlow -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger > OUTscreen.txt
For getting spreadsheet numbers. Use -jetTrigger even if no trigger is apply. To “pick up” the Lumi blockes
  • Debug will operate with SeedTool, due to the replace of files. (no correction)
  • When jetTrigger is not specify then lepTrigger is the default one.


right Running Data (NO correction):

~> BoostedCutFlow -f mc_ch_file.txt -boost   ### you can add -dataStream Egamma (or whatever you need)


Running D3PD2MiniSLBoost

right D3PD2MiniSLBoost's options:
~> D3PD2MiniSLBoost --help
---- Starting D3PD2MiniSL
 Usage: D3PD2MiniSLBoost [OPTION]
  The list of options are:
  -f <value>             input file list file (default: "control/file_list.txt")
  -h                print this message
  -mcType <value>      set the MC type (mc11b, mc11c, mc12, atlfast2) (default: use directory name.)
  -nf <value>               number of input files to consider (default: 1)
  -n <value>                maximum number of events to process (default: all events)
  -nocache                   turn off the TTreeCache, reduce read failures with DPM RFIO
  -o <value>                output ROOT file (default "OutputHistos.root")
  -i <value>                 index of the output file name (default nothing)
  -p <value>                parameters file (default: "control/settings.txt")
  -rndmType <value>   reseeding strategy (once, file, debug) (default: once)
  -skn <value>             number of events to skip (default: 0)
  -sknf <value>            number of files to skip (default: 0)
  -vin                            validate input files (default: false)
  -dataStream               data stream name: Egamma,Muons.   
  -useLooseElectrons    use loose lepton definition.   
  -useLooseMuonss      use loose lepton definition.   
  -boost                        use boosted branches (default: false)
  -JetTrigger                 use Jet Trigger      (default: false)
  -useTruthParticles      use TruthInfo or not (default: false)
  -useClusteris              use (default: false)
  -findEvent <value>    use this to run on one event number, this is good for debuging

right Running boosted regime for MC and data:

~> D3PD2MiniSLBoost -f mc_file_list.txt -boost -mcType mc12 -rndmType debug  > OUTscreen2.txt
###~> D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -addGenerator > OUTscreen3.txt
###~> D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -useTruthParticles > OUTscreen4.txt

~> D3PD2MiniSLBoost -f data_file_list.txt -boost -dataStream "VAL" 
Where "VAL" stands for either Egamma or Muons

right Running resolved regime for MC and data:

~> D3PD2MiniSLBoost -f MC_file_list.txt -mcType mc12 -rndmType debug 

~> D3PD2MiniSLBoost -f data_file_list.txt -dataStream "VAL" ###(same as above)

right Running OLD:

~> D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger > OUTscreen2.txt
###~> D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger -addGenerator > OUTscreen3.txt
###~> D3PD2MiniSLBoost -f mc_ch_file.txt -rndmType debug -mcType mc12 -boost -jetTrigger -useTruParticles > OUTscreen4.txt
For getting spreadsheet numbers. Use -jetTrigger even if no trigger is apply.
  • Debug will operate with SeedTool, due to the replace of files. (no correction)
  • When jetTrigger is not specify then lepTrigger is the default one.

~> ./D3PD2MiniSLBoost -f Data_file_list.txt -boost -jetTrigger
  • This will produce a mini NTUP
  • Same as running on the grid.
  • Too add new variables go you, do it al a Root/MiniSLBoosted.cxx


Skimmed samples

ToDo... Our purpose is to make the %NTUP_TOPBOOST% samples (data and MC) much smaller. So, we'll run this samples over TopD3PDBoosted (inside TopRootCore). This package provides a single-lepton cut flow for the Boosted ttbar (%NTUPBOOST% D3PD's) event selection along with the reconstruction of the selected event to build the ttbar system. All the ouputs.root obtained after running D3PD2MiniSLBoost will be used in all subsequent steps of the Charge Asymmetry analysis (unfolding, corrections...).


My analysis with TopD3PDBoosted & TopRootCore

ToDo... See new twiki VictoriaBoosted.



.git Repository (IFIC-IFAE)

Code to compute several charge asymmetries. It has been developed by IFAE charge asymmery group.

Input files

The input files, since they are very large (about 12 GB), must be hosted at /tmp/:
~> ssh -Y vsanchez@lxplus403.cern.ch
~> asetup 16.7.0   ### if this doesn't work, try with "asetup 17.0.0"
~> cd /tmp/vsanchez/IFAE
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/asymmetry_ntuples
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/asymmetry_ntuples/Histogrammer-01-15-02.tgz .
~> tar -xvf Histogrammer-01-15-02.tgz
~> cd Histogrammer-01-15-02
~> cd nominal
~> ls MUON/Dibosons_MUON_OutputHisto.root   ### for instance

If this doesn't work, I have saved a copy in my laptop:

MAC~> cd $HOME/Analysis/IFIC_IFAE/git_repositories
MAC~> scp Histogrammer-01-15-02.tgz vsanchez@lxplus403.cern.ch:/tmp/vsanchez/IFAE 


The code

The work directory is asymmetry.git/asymmetryAtlas/, where all the code that we need is stored:
~> ssh -Y vsanchez@lxplus403.cern.ch
~> asetup 16.7.0   ### if this doesn't work, try with "asetup 17.0.0"
~> cd IFIC_IFAE/asymmetry.git/asymmetryAtlas
~> 
~> git checkout -b branchVIKI   ### VERY IMPORTANT
~> emacs python/setup.py &   ### add Location en L10
~> emacs python/Histogrammer.py &   ### add hetaleptoncharge
~> emacs python/analyzer.py &   ### add hetaleptoncharge
~> git commit -m 'change A,B' python/setup.py
~> git commit -m 'change A,B' python/ Histogrammer.py
~> git commit -m 'change A,B' python/ analyzer.py
~> 
~> python python/analyzer.py nominal


Output files

The output files are saved at plots/ folder:
~> ssh -Y vsanchez@lxplus403.cern.ch
~> asetup 16.7.0   ### if this doesn't work, try with "asetup 17.0.0"
~> cd IFIC_IFAE/asymmetry.git/asymmetryAtlas
~> cd plots/nominal
~> ls muon/*.root
~> ls muon/*.png

To copy the output files in my laptop:

MAC~> cd $HOME/Analysis/IFIC_IFAE/git_repositories/out_asymmetryAtlas/
MAC~> scp vsanchez@lxplus403.cern.ch:/afs/cern.ch/user/v/vsanchez/IFIC_IFAE/asymmetry.git/asymmetryAtlas/plots/nominal/muon/*.png .
MAC~> open *.png



Useful macros

Here are a few macros, from different areas, which may be useful:
PICK If you want to plot the massttbar, you should download this package: ttbar_mass. You have to put the root file name in macro_histogram_mtt.cxx, and run it with root.
PICK If you need to generate many graphs automatically, download this package: crearNtuplas_auto.tar and run the file pasar_por_PloTop_viki.sh.


PICK If you want to create a file.root (like a ntuple) from a file.lhe (MadGraph's output), you must use this package (createFileRoot) and run:

~> cd createFileRoot/
~> make
~> ./plot_top_marcel
         

PICK If you have several samples with similar name (for instance, testName.generator.X.Y.lhe, with X=1,2,3....10 and Y=10,20,30,40,50), you can change file's names (for example, NewTestName.user.X.Y.lhe) with this program. Whether if these samples has been generated with MadGraph or Pythia, you can also change the particle's code. Also, if you want to merge all these samples, you can use this script.


PICK When you want to compare a DATA sample with the equivalent MC samples, you must take into account the integrated luminosity, the cross section and the total number of events produced in MC to compute a "scale factor". This factor is necessary to compare DATA with MC. Here there is a small program which allow you to do so.


PICK If you have several ntuples with different extension to .root, for instance .root1 or .root__DQ2_748574, you can change all these extensions to be equal to .root with this executable file (you have to remove the extension .txt), and then merge all ntuples. The following steps should be performed:

~> ssh -X vicsanma@ui06.ific.uv.es
~> cd $DIRECTORY      #it may be /tmp/ or /T3/, and it should contain extension.py
~> cp /way/ALLfiles.root* .
~> python extension.py      #here you are running the executable file downloaded
         

PICK To draw a concrete branches from differents ntuples, it means, with data, with background, with your signal... you can use this macro, or if you only need to compare two branches with a given cut, use this one. Be careful to change all file names, its path...


PICK To create a dataset registered in DQ2 with D4PD which are stored in T3 space (script).


PICK To reduce the number of branches in a D3PD and add new ones, use this package, it contains a MakeFile.


PICK To compile a MakeClass files (.C and .h) with a Makefile, you can use one of these packages: packageLOCAL or packageGRID. With local-package, only run source cppmake.sh; ./skimD3PD_addTRUTHbranch. With grid-package, only run source runPRUN.sh.


PICK If....


PICK



fbu 0.0.1

PyFBU?: Implementation of the Fully Bayesian Unfolding algorithm described in physics.data-an/1201.4612 . The software is based on the Markov Chain Monte Carlo sampling toolkit PyMC?.

To do the first time:

cd /afs/cern.ch/work/v/vsanchez/
virtualenv fbu
cd fbu
source bin/activate
pip install numpy==1.7.0
pip install fbu
### git clone https://github.com/gerbaudo/fbu.git (Alternatively one can check out the development version of the code from the GitHub repository)
### cat requirements.txt | xargs pip install
### python tests/pymc_test/unfold.py

To do from then on:

cd /afs/cern.ch/work/v/vsanchez/fbu
source bin/activate
...
...
... 
bin/deactivate



eos

~> ssh -Y vsanchez@lxplus403.cern.ch  
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/TRC
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/VALIDATION
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/asymmetry_ntuples
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/MatchingSTUDY
~> 
~> 
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/validationWITHjets.tar .
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/7TeV/validation_vsm_MatchingStudy.tar .
~> 
~> FILE=Plots_test1.tar
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/MatchingSTUDY/7TeV
~> xrdcp $FILE root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/7TeV/$FILE
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/7TeV/$FILE .
~> 
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV
~> xrdcp $FILE root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV/$FILE
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV/$FILE .
~> 
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV/mass500
~> xrdcp $FILE root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV/mass500/$FILE
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/MatchingSTUDY/8TeV/mass500/$FILE .
~> 
~> 
~> xrdcp FILE.tar root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/FOLDER/FILE.tar
~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/FOLDER/FILE.tar .
~> 
~> eos rm eos/atlas/user/v/vsanchez/FOLDER/FILEtoREMOVE.tar
~> eos rm -r eos/atlas/user/v/vsanchez/FOLDERtoREMOVE


~> xrdcp root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/TRC_testSamples_February2014/MC/117050/el.root .
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/TRC_testSamples_February2014/

~> eos mkdir /eos/atlas/user/v/vsanchez/Samples_AnalysisTop-1.5.0_June2014/Data/HadDelayed_Dominik
~> xrdcp $FILE root://eosatlas.cern.ch//eos/atlas/user/v/vsanchez/Samples_AnalysisTop-1.5.0_June2014/Data/HadDelayed_Dominik/$FILE
~> xrd eosatlas dirlist /eos/atlas/user/v/vsanchez/Samples_AnalysisTop-1.5.0_June2014/Data/HadDelayed_Dominik

Work space at CERN:

~>cd /afs/cern.ch/work/v/vsanchez
~>cd /afs/cern.ch/work/v/vsanchez/private
~>cd /afs/cern.ch/work/v/vsanchez/public



My Links

KK-gluon

Athena

DQ2

TopRootCore

BoostedTopRootCore

ATLAS offline software tutorial

Twiki rules

By default




target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target

led-box-blue Victoria Sánchez Martínezled-box-blue
--- IFIC ---
Edificio Institutos de Investigación
Paterna, apartado 22085
E-46071 Valencia (Spain)

target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target.target

toggleopenShow attachmentstogglecloseHide attachments
Topic attachments
I Attachment Action Size Date Who Comment
ziptar comoATLAS.tar manage 37.5 K 18 Apr 2012 - 09:32 VictoriaSanchezMartinez  
elsedat proc_card_mg5_BSM_KKGgeneric.dat manage 1.9 K 18 Apr 2012 - 13:27 VictoriaSanchezMartinez  
elsedat param_card_MG5_v1_3_33_KKG.dat manage 10.6 K 18 Apr 2012 - 13:59 VictoriaSanchezMartinez  
ziptar createFileRoot.tar manage 18.0 K 18 Apr 2012 - 16:48 VictoriaSanchezMartinez  
elsedat run_card_MG5_v1_3_33_KKG.dat manage 12.9 K 19 Apr 2012 - 12:15 VictoriaSanchezMartinez  
pdfpdf graph_kkgGeneric_mass1000_7TeV.pdf manage 14.2 K 19 Apr 2012 - 12:33 VictoriaSanchezMartinez  
pdfpdf graph_kkgDilepton_mass1000_7TeV.pdf manage 14.2 K 19 Apr 2012 - 12:46 VictoriaSanchezMartinez  
pdfpdf graph_kkgSemilepton_mass1000_7TeV.pdf manage 14.1 K 19 Apr 2012 - 12:54 VictoriaSanchezMartinez  
pdfpdf graph_kkgHadronic_mass1000_7TeV.pdf manage 14.2 K 19 Apr 2012 - 13:05 VictoriaSanchezMartinez  
pdfpdf graph_kkgGeneric_mass1000_8TeV.pdf manage 14.2 K 23 Apr 2012 - 15:06 VictoriaSanchezMartinez  
pdfpdf graph_kkgDilepton_mass1000_8TeV.pdf manage 14.2 K 23 Apr 2012 - 15:40 VictoriaSanchezMartinez  
pdfpdf graph_kkgSemilepton_mass1000_8TeV.pdf manage 14.2 K 23 Apr 2012 - 15:40 VictoriaSanchezMartinez  
pdfpdf graph_kkgHadronic_mass1000_8TeV.pdf manage 14.2 K 23 Apr 2012 - 15:41 VictoriaSanchezMartinez  
pdfpdf graph_crossSection_matching.pdf manage 15.1 K 23 Apr 2012 - 16:16 VictoriaSanchezMartinez  
txttxt extension.py.txt manage 0.6 K 24 Apr 2012 - 07:44 VictoriaSanchezMartinez  
txttxt validate_ds2eos.py.txt manage 4.3 K 29 Apr 2012 - 08:53 VictoriaSanchezMartinez  
jpgjpg graph_diagrams_asymmetry.jpg manage 75.8 K 30 Apr 2012 - 07:50 VictoriaSanchezMartinez  
jpgjpg distributions_t_tbar.jpg manage 229.8 K 03 May 2012 - 14:42 VictoriaSanchezMartinez  
pdfpdf slidesVSM_english.pdf manage 2933.5 K 03 May 2012 - 15:08 VictoriaSanchezMartinez  
pdfpdf slidesVSM_español.pdf manage 2929.4 K 03 May 2012 - 15:09 VictoriaSanchezMartinez  
jpgjpg eq.Ac+-.jpg manage 34.3 K 03 May 2012 - 15:45 VictoriaSanchezMartinez  
jpgjpg eq.Ac+-_SMprediction.jpg manage 19.4 K 04 May 2012 - 07:18 VictoriaSanchezMartinez  
cC macro_systematics_data.C manage 14.1 K 04 May 2012 - 11:08 VictoriaSanchezMartinez  
cC macro_systematics_mcIdata.C manage 12.4 K 04 May 2012 - 11:09 VictoriaSanchezMartinez  
jpgjpg gg_vs_qqbar.jpg manage 105.3 K 04 May 2012 - 12:01 VictoriaSanchezMartinez  
jpgjpg eq.AcYc.jpg manage 27.6 K 06 May 2012 - 11:40 VictoriaSanchezMartinez  
cC macro_2branch_1plot_CUT.C manage 9.5 K 09 May 2012 - 15:18 VictoriaSanchezMartinez  
jpgjpg picture_FullChain.jpg manage 68.9 K 12 May 2012 - 13:05 VictoriaSanchezMartinez  
shsh empezarAthena1561413.sh manage 1.0 K 12 May 2012 - 14:09 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2200_8TeV.pdf manage 14.1 K 15 May 2012 - 16:16 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2400_8TeV.pdf manage 13.9 K 15 May 2012 - 16:30 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2600_8TeV.pdf manage 14.2 K 15 May 2012 - 16:51 VictoriaSanchezMartinez  
elsedat param_card_KKG_2200.dat manage 10.6 K 15 May 2012 - 16:56 VictoriaSanchezMartinez  
elsedat proc_card_mg5_KKG_2200.dat manage 1.9 K 15 May 2012 - 16:56 VictoriaSanchezMartinez  
elsedat run_card_KKG_2200.dat manage 12.9 K 15 May 2012 - 16:56 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2200_7TeV.pdf manage 14.0 K 17 May 2012 - 12:43 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2400_7TeV.pdf manage 14.3 K 17 May 2012 - 12:54 VictoriaSanchezMartinez  
pdfpdf graph_KKG_mass2600_7TeV.pdf manage 13.9 K 17 May 2012 - 13:06 VictoriaSanchezMartinez  
pdfpdf graph_KKG1000_cteq6_mstw_7TeV.pdf manage 15.5 K 17 May 2012 - 17:29 VictoriaSanchezMartinez  
pdfpdf graph_KKG1000_cteq6_mstw_8TeV.pdf manage 15.6 K 23 May 2012 - 15:02 VictoriaSanchezMartinez  
shsh crearDataset_DATAt3.sh manage 2.7 K 28 May 2012 - 12:18 VictoriaSanchezMartinez  
cC ejecutar.C manage 0.2 K 01 Jun 2012 - 07:26 VictoriaSanchezMartinez  
txttxt LocalRoot.py.txt manage 0.3 K 01 Jun 2012 - 07:27 VictoriaSanchezMartinez  
cC ClassVIKIui.C manage 23.0 K 10 Jun 2012 - 06:49 VictoriaSanchezMartinez  
hh ClassVIKIui.h manage 52.0 K 10 Jun 2012 - 06:50 VictoriaSanchezMartinez  
txttxt GridRoot.py.txt manage 1.2 K 10 Jun 2012 - 06:52 VictoriaSanchezMartinez  
cC ejecutarGrid.C manage 0.2 K 10 Jun 2012 - 07:00 VictoriaSanchezMartinez  
cC macro_allCanvas.C manage 20.7 K 14 Jun 2012 - 08:55 VictoriaSanchezMartinez  
elsedat proc_card_MG5_v1_3_32_KKGhadronic.dat manage 1.7 K 02 Aug 2012 - 08:17 VictoriaSanchezMartinez  
elsedat proc_card_MG5_v1_3_32_KKGsemilepton.dat manage 1.8 K 02 Aug 2012 - 08:17 VictoriaSanchezMartinez  
elsedat proc_card_MG5_v1_3_32_KKGdilepton.dat manage 1.7 K 02 Aug 2012 - 08:18 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width10percent.png manage 10.8 K 02 Aug 2012 - 15:40 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width15percent.png manage 12.9 K 02 Aug 2012 - 15:41 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width20percent.png manage 11.5 K 02 Aug 2012 - 15:41 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width25percent.png manage 10.7 K 02 Aug 2012 - 15:41 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width30percent.png manage 10.4 K 02 Aug 2012 - 15:42 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width35percent.png manage 9.9 K 02 Aug 2012 - 15:42 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_width40percent.png manage 9.9 K 02 Aug 2012 - 15:42 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass500_KKG.png manage 10.8 K 02 Aug 2012 - 15:43 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass600_KKG.png manage 11.3 K 02 Aug 2012 - 15:44 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass700_KKG.png manage 11.0 K 02 Aug 2012 - 15:44 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass800_KKG.png manage 10.2 K 02 Aug 2012 - 15:44 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass900_KKG.png manage 10.2 K 02 Aug 2012 - 15:44 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG.png manage 13.0 K 02 Aug 2012 - 15:45 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1150_KKG.png manage 12.1 K 02 Aug 2012 - 15:45 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1300_KKG.png manage 11.3 K 02 Aug 2012 - 15:45 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1600_KKG.png manage 10.5 K 02 Aug 2012 - 15:45 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1800_KKG.png manage 10.0 K 02 Aug 2012 - 15:46 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG.png manage 11.1 K 02 Aug 2012 - 15:46 VictoriaSanchezMartinez  
shsh KKGancho_loop_mstw_kkgAncho_1TeV.sh manage 7.3 K 02 Aug 2012 - 15:55 VictoriaSanchezMartinez  
elsedat KKGancho_param_card_template.dat manage 10.6 K 02 Aug 2012 - 15:56 VictoriaSanchezMartinez  
elsedat KKGancho_proc_card_mg5.dat manage 1.7 K 02 Aug 2012 - 15:59 VictoriaSanchezMartinez  
elsedat KKGancho_run_card_template.dat manage 12.9 K 02 Aug 2012 - 15:59 VictoriaSanchezMartinez  
shsh KKG_loop_mstw_500.sh manage 4.5 K 02 Aug 2012 - 16:12 VictoriaSanchezMartinez  
shsh KKG_loop_mstw_2000.sh manage 4.5 K 02 Aug 2012 - 16:12 VictoriaSanchezMartinez  
elsedat KKG_param_card_template.dat manage 10.6 K 02 Aug 2012 - 16:12 VictoriaSanchezMartinez  
elsedat KKG_proc_card_mg5.dat manage 1.7 K 02 Aug 2012 - 16:13 VictoriaSanchezMartinez  
elsedat KKG_run_card_template.dat manage 12.9 K 02 Aug 2012 - 16:13 VictoriaSanchezMartinez  
shsh agrupar_10test.sh manage 1.4 K 02 Aug 2012 - 16:20 VictoriaSanchezMartinez  
ziptar crearNtuplas_auto.tar manage 63.5 K 02 Aug 2012 - 16:27 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width10percent.png manage 10.6 K 02 Aug 2012 - 18:24 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width15percent.png manage 11.6 K 02 Aug 2012 - 18:24 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width20percent.png manage 10.6 K 02 Aug 2012 - 18:25 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width25percent.png manage 10.0 K 02 Aug 2012 - 18:25 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width30percent.png manage 11.2 K 02 Aug 2012 - 18:26 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width35percent.png manage 11.0 K 02 Aug 2012 - 18:26 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2000_KKG_width40percent.png manage 11.4 K 02 Aug 2012 - 18:26 VictoriaSanchezMartinez  
txttxt ControlCard_cteq6l_1_7TeV_mass2250_KKG.txt manage 29.7 K 08 Aug 2012 - 08:00 VictoriaSanchezMartinez  
txttxt ControlCard_cteq6l_1_7TeV_mass2500_KKG.txt manage 29.7 K 08 Aug 2012 - 08:00 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass500_KKG.txt manage 29.7 K 08 Aug 2012 - 08:11 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass600_KKG.txt manage 29.7 K 08 Aug 2012 - 08:11 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass700_KKG.txt manage 29.7 K 08 Aug 2012 - 08:12 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass800_KKG.txt manage 29.7 K 08 Aug 2012 - 08:12 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass900_KKG.txt manage 29.7 K 08 Aug 2012 - 08:12 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass1000_KKG.txt manage 29.7 K 08 Aug 2012 - 08:12 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass1150_KKG.txt manage 29.7 K 08 Aug 2012 - 08:12 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass1300_KKG.txt manage 29.7 K 08 Aug 2012 - 08:13 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass1600_KKG.txt manage 29.7 K 08 Aug 2012 - 08:13 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass1800_KKG.txt manage 29.7 K 08 Aug 2012 - 08:13 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass2000_KKG.txt manage 29.7 K 08 Aug 2012 - 08:13 VictoriaSanchezMartinez  
shsh KKG_loop_cteq6l_2000.sh manage 3.9 K 08 Aug 2012 - 08:16 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width10percent.txt manage 29.7 K 08 Aug 2012 - 08:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width15percent.txt manage 29.7 K 08 Aug 2012 - 08:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width20percent.txt manage 29.7 K 08 Aug 2012 - 08:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width25percent.txt manage 29.7 K 08 Aug 2012 - 08:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width30percent.txt manage 29.7 K 08 Aug 2012 - 08:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width35percent.txt manage 29.7 K 08 Aug 2012 - 08:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_width40percent.txt manage 29.7 K 08 Aug 2012 - 08:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width10percent.txt manage 29.7 K 08 Aug 2012 - 08:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width15percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width20percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width25percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width30percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width35percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass2000_width40percent.txt manage 29.7 K 08 Aug 2012 - 08:49 VictoriaSanchezMartinez  
pngpng graph_cteq6l_7TeV_mass2250_KKG.png manage 11.9 K 08 Aug 2012 - 09:07 VictoriaSanchezMartinez  
pngpng graph_cteq6l_7TeV_mass2500_KKG.png manage 11.8 K 08 Aug 2012 - 09:07 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_KKG_semileptonic_matching0.txt manage 29.8 K 09 Aug 2012 - 10:33 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass1000_KKG_semileptonic_matching1.txt manage 29.8 K 09 Aug 2012 - 10:33 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_semileptonic_matching0.png manage 14.6 K 09 Aug 2012 - 10:33 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass1000_KKG_semileptonic_matching1.png manage 15.0 K 09 Aug 2012 - 10:33 VictoriaSanchezMartinez  
elsedat KKG_SemilepMatchin_param_card.dat manage 10.6 K 09 Aug 2012 - 10:33 VictoriaSanchezMartinez  
elsedat KKG_SemilepMatchin_proc_card_mg5.dat manage 1.8 K 09 Aug 2012 - 10:34 VictoriaSanchezMartinez  
elsedat KKG_SemilepMatchin_run_card.dat manage 12.9 K 09 Aug 2012 - 10:34 VictoriaSanchezMartinez  
txttxt ControlCard_MG4_1_7TeV_mass2500_KKGLUON.txt manage 28.0 K 18 Sep 2012 - 15:18 VictoriaSanchezMartinez  
txttxt ControlCard_MG4_1_7TeV_mass2250_KKGLUON.txt manage 28.0 K 18 Sep 2012 - 15:20 VictoriaSanchezMartinez  
pngpng graph_MG4_7TeV_KKGLUON_2500.png manage 13.6 K 18 Sep 2012 - 15:20 VictoriaSanchezMartinez  
pngpng graph_MG4_7TeV_KKGLUON_2250.png manage 12.2 K 18 Sep 2012 - 15:20 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2500_KKG.png manage 11.9 K 19 Sep 2012 - 14:56 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2250_KKG.png manage 12.1 K 19 Sep 2012 - 14:56 VictoriaSanchezMartinez  
txttxt ControlCard_8TeV_mc12_158769.txt manage 29.7 K 19 Sep 2012 - 14:56 VictoriaSanchezMartinez  
txttxt ControlCard_8TeV_mc12_158768.txt manage 29.7 K 19 Sep 2012 - 14:57 VictoriaSanchezMartinez  
elsecxx TriggerUtils.cxx manage 4.0 K 06 Nov 2012 - 10:26 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_7TeV_TEST4.dat manage 12.9 K 07 Nov 2012 - 12:27 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_7TeV_TEST3.dat manage 12.9 K 07 Nov 2012 - 12:27 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_7TeV_TEST1y2.dat manage 12.9 K 07 Nov 2012 - 12:27 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST3Cy4C.dat manage 2.6 K 07 Nov 2012 - 12:28 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST3By4B.dat manage 2.6 K 07 Nov 2012 - 12:29 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST3Ay4A.dat manage 2.6 K 07 Nov 2012 - 12:29 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST3ACy4AC.dat manage 2.7 K 07 Nov 2012 - 12:29 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST3ABCy4ABC.dat manage 2.9 K 07 Nov 2012 - 12:29 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST2B.dat manage 2.5 K 07 Nov 2012 - 12:30 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST2AB.dat manage 2.6 K 07 Nov 2012 - 12:30 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST2A.dat manage 2.6 K 07 Nov 2012 - 12:30 VictoriaSanchezMartinez  
elsedat MatchingStudy_proc_card_mg5_TEST1.dat manage 2.4 K 07 Nov 2012 - 12:30 VictoriaSanchezMartinez  
elsedat MatchingStudy_param_card_TESTall.dat manage 10.6 K 07 Nov 2012 - 12:31 VictoriaSanchezMartinez  
pngpng canvas4_test4C.png manage 36.6 K 07 Nov 2012 - 12:32 VictoriaSanchezMartinez  
pngpng canvas4_test4B.png manage 37.8 K 07 Nov 2012 - 12:33 VictoriaSanchezMartinez  
pngpng canvas4_test4AC.png manage 37.7 K 07 Nov 2012 - 12:33 VictoriaSanchezMartinez  
pngpng canvas4_test4ABC.png manage 37.8 K 07 Nov 2012 - 12:33 VictoriaSanchezMartinez  
pngpng canvas4_test4A.png manage 37.2 K 07 Nov 2012 - 12:33 VictoriaSanchezMartinez  
pngpng canvas4_test3C.png manage 38.1 K 07 Nov 2012 - 12:33 VictoriaSanchezMartinez  
pngpng canvas4_test3B.png manage 37.4 K 07 Nov 2012 - 12:34 VictoriaSanchezMartinez  
pngpng canvas4_test3AC.png manage 37.2 K 07 Nov 2012 - 12:34 VictoriaSanchezMartinez  
pngpng canvas4_test3ABC.png manage 37.9 K 07 Nov 2012 - 12:34 VictoriaSanchezMartinez  
pngpng canvas4_test3A.png manage 38.9 K 07 Nov 2012 - 12:34 VictoriaSanchezMartinez  
pngpng canvas4_test2B.png manage 38.7 K 07 Nov 2012 - 12:35 VictoriaSanchezMartinez  
pngpng canvas4_test2AB.png manage 38.2 K 07 Nov 2012 - 12:35 VictoriaSanchezMartinez  
pngpng canvas4_test2A.png manage 39.4 K 07 Nov 2012 - 12:35 VictoriaSanchezMartinez  
pngpng canvas4_test1.png manage 41.3 K 07 Nov 2012 - 12:36 VictoriaSanchezMartinez  
pngpng canvas3_test4C.png manage 35.4 K 09 Nov 2012 - 11:34 VictoriaSanchezMartinez  
pngpng canvas3_test4B.png manage 35.9 K 09 Nov 2012 - 11:34 VictoriaSanchezMartinez  
pngpng canvas3_test4AC.png manage 35.9 K 09 Nov 2012 - 11:34 VictoriaSanchezMartinez  
pngpng canvas3_test4ABC.png manage 36.1 K 09 Nov 2012 - 11:35 VictoriaSanchezMartinez  
pngpng canvas3_test4A.png manage 36.4 K 09 Nov 2012 - 11:35 VictoriaSanchezMartinez  
pngpng canvas3_test3C.png manage 42.9 K 09 Nov 2012 - 11:35 VictoriaSanchezMartinez  
pngpng canvas3_test3B.png manage 36.6 K 09 Nov 2012 - 11:35 VictoriaSanchezMartinez  
pngpng canvas3_test3AC.png manage 42.9 K 09 Nov 2012 - 11:35 VictoriaSanchezMartinez  
pngpng canvas3_test3ABC.png manage 42.9 K 09 Nov 2012 - 11:36 VictoriaSanchezMartinez  
pngpng canvas3_test3A.png manage 43.0 K 09 Nov 2012 - 11:36 VictoriaSanchezMartinez  
pngpng canvas3_test2B.png manage 42.5 K 09 Nov 2012 - 11:36 VictoriaSanchezMartinez  
pngpng canvas3_test2AB.png manage 42.6 K 09 Nov 2012 - 11:36 VictoriaSanchezMartinez  
pngpng canvas3_test2A.png manage 35.8 K 09 Nov 2012 - 11:36 VictoriaSanchezMartinez  
pngpng canvas3_test1.png manage 42.3 K 09 Nov 2012 - 11:37 VictoriaSanchezMartinez  
hh classTRUTH.h manage 67.5 K 09 Nov 2012 - 11:52 VictoriaSanchezMartinez  
cC classTRUTH.C manage 5.2 K 09 Nov 2012 - 11:52 VictoriaSanchezMartinez  
shsh runGenerationValidation.sh manage 2.3 K 09 Nov 2012 - 12:17 VictoriaSanchezMartinez  
hh Sept24_data_branches.h manage 1650.6 K 13 Nov 2012 - 08:49 VictoriaSanchezMartinez  
hh Sept24_MC_branches.h manage 1909.5 K 13 Nov 2012 - 08:49 VictoriaSanchezMartinez  
elsedat MatchingStudy_param_card_TESTall_mass500.dat manage 10.6 K 20 Nov 2012 - 11:22 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_TEST4.dat manage 12.9 K 20 Nov 2012 - 11:22 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_TEST3.dat manage 12.9 K 20 Nov 2012 - 11:22 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_TEST1y2.dat manage 12.9 K 20 Nov 2012 - 11:23 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_mass500_TEST4.dat manage 12.9 K 20 Nov 2012 - 11:23 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_mass500_TEST3.dat manage 12.9 K 20 Nov 2012 - 11:23 VictoriaSanchezMartinez  
elsedat MatchingStudy_run_card_8TeV_mass500_TEST1y2.dat manage 12.9 K 20 Nov 2012 - 11:24 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test4C.png manage 38.1 K 22 Nov 2012 - 10:34 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test4B.png manage 37.7 K 22 Nov 2012 - 10:34 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test4AC.png manage 38.1 K 22 Nov 2012 - 10:34 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test4ABC.png manage 38.7 K 22 Nov 2012 - 10:35 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test4A.png manage 38.4 K 22 Nov 2012 - 10:35 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test3C.png manage 37.6 K 22 Nov 2012 - 10:35 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test3B.png manage 37.7 K 22 Nov 2012 - 10:36 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test3AC.png manage 38.0 K 22 Nov 2012 - 10:36 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test3ABC.png manage 38.2 K 22 Nov 2012 - 10:36 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test3A.png manage 38.4 K 22 Nov 2012 - 10:37 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test2B.png manage 39.4 K 22 Nov 2012 - 10:37 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test2AB.png manage 38.9 K 22 Nov 2012 - 10:37 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test2A.png manage 38.1 K 22 Nov 2012 - 10:38 VictoriaSanchezMartinez  
pngpng canvas4_8TeV_test1.png manage 42.5 K 22 Nov 2012 - 10:38 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test4C.png manage 42.4 K 22 Nov 2012 - 10:39 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test4B.png manage 42.8 K 22 Nov 2012 - 10:40 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test4AC.png manage 43.2 K 22 Nov 2012 - 10:40 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test4ABC.png manage 42.9 K 22 Nov 2012 - 10:40 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test4A.png manage 42.7 K 22 Nov 2012 - 10:40 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test3C.png manage 42.6 K 22 Nov 2012 - 10:41 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test3B.png manage 42.2 K 22 Nov 2012 - 10:41 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test3AC.png manage 42.3 K 22 Nov 2012 - 10:41 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test3ABC.png manage 42.9 K 22 Nov 2012 - 10:41 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test2B.png manage 42.9 K 22 Nov 2012 - 10:42 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test3A.png manage 42.9 K 22 Nov 2012 - 10:42 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test2AB.png manage 42.4 K 22 Nov 2012 - 10:42 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test2A.png manage 42.7 K 22 Nov 2012 - 10:42 VictoriaSanchezMartinez  
pngpng canvas3_8TeV_test1.png manage 42.5 K 22 Nov 2012 - 10:43 VictoriaSanchezMartinez  
txttxt packages.txt manage 3.5 K 11 Dec 2012 - 13:42 VictoriaSanchezMartinez  
shsh cp_TopD3PDSelection2.sh manage 0.4 K 11 Dec 2012 - 13:42 VictoriaSanchezMartinez  
shsh cpall.sh manage 0.4 K 11 Dec 2012 - 13:42 VictoriaSanchezMartinez  
elsecxx WhichPeriod_TRC.cxx manage 19.7 K 11 Dec 2012 - 13:43 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width10percent.txt manage 29.6 K 19 Dec 2012 - 14:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width15percent.txt manage 29.6 K 19 Dec 2012 - 14:47 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width20percent.txt manage 29.6 K 19 Dec 2012 - 14:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width25percent.txt manage 29.6 K 19 Dec 2012 - 14:48 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width30percent.txt manage 29.6 K 19 Dec 2012 - 14:48 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width10percent.png manage 13.3 K 19 Dec 2012 - 14:51 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width15percent.png manage 13.4 K 19 Dec 2012 - 14:51 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width20percent.png manage 11.8 K 19 Dec 2012 - 14:51 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width25percent.png manage 11.8 K 19 Dec 2012 - 14:52 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width30percent.png manage 11.8 K 19 Dec 2012 - 14:52 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width35percent.png manage 11.9 K 15 Feb 2013 - 16:19 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG_width40percent.png manage 12.2 K 15 Feb 2013 - 16:19 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width35percent.txt manage 29.6 K 15 Feb 2013 - 16:26 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_1_8TeV_mass3000_width40percent.txt manage 29.6 K 15 Feb 2013 - 16:27 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass2750_KKG.png manage 13.2 K 20 Feb 2013 - 08:56 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass3000_KKG.png manage 13.5 K 21 Feb 2013 - 14:12 VictoriaSanchezMartinez  
txttxt ControlCard_8TeV_mc12_180575.txt manage 29.6 K 21 Feb 2013 - 14:14 VictoriaSanchezMartinez  
txttxt ControlCard_8TeV_mc12_180576.txt manage 29.6 K 21 Feb 2013 - 14:15 VictoriaSanchezMartinez  
elsegz skimD3PD_addTRUTHbranch.tar.gz manage 178.6 K 19 Apr 2013 - 07:28 VictoriaSanchezMartinez  
ziptar D3PDgrid_GRIDtest.tar manage 3521.0 K 30 Apr 2013 - 14:38 VictoriaSanchezMartinez  
ziptar D3PDgrid_localtest.tar manage 3522.0 K 30 Apr 2013 - 14:41 VictoriaSanchezMartinez  
pngpng graph_mstw2008_8TeV_mass400_KKG.png manage 10.9 K 22 Oct 2013 - 15:15 VictoriaSanchezMartinez  
txttxt ControlCard_mstw2008_8TeV_mass400_KKG.txt manage 29.7 K 22 Oct 2013 - 15:25 VictoriaSanchezMartinez  
cC renameCODEnameFILE.C manage 2.3 K 28 Oct 2013 - 14:12 VictoriaSanchezMartinez  
jpgjpg graph_CrossSection_kkg.jpg manage 72.5 K 29 Oct 2013 - 11:39 VictoriaSanchezMartinez  
shsh New_JO_cambiarNombre.sh manage 1.7 K 31 Oct 2013 - 09:42 VictoriaSanchezMartinez  
txttxt NewTemplate.MC12.182764.MadGraphPythia8_MSTW2008LO.KKGluonTTbar_400.py.txt manage 0.6 K 31 Oct 2013 - 09:42 VictoriaSanchezMartinez  
ziptar validation_MC12_vsm_slc5.tar manage 9262.5 K 31 Oct 2013 - 15:26 VictoriaSanchezMartinez  
ziptar topBSM_v4.tar manage 220.0 K 28 Nov 2013 - 12:13 VictoriaSanchezMartinez  
Edit text | WYSIWYG | Attach | PDF | Raw View | Backlinks: Web, All Webs | History: r170 < r169 < r168 < r167 < r166 | More topic actions
 
Powered by TWiki
This site is powered by the TWiki collaboration platformCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback