Skip to main content

Setting up the working area for 4 fb^-1 analysis

# enter work area home directory
# if not exist, create it. convention is /work/"hostname"/"user".
cd /work/landshark-clued0/weigang

# pre setups
setup D0RunII p21.12.00 -O SRT_QUAL=maxopt
newrel p21.12.00 p2112_singletop
cd p2112_singletop
source setenv.csh
===content of setenv.sh====
#! /bin/csh
setup d0tools
setup D0RunII p21.12.00 -O SRT_QUAL=maxopt
d0setwa
setup d0cvs
setup caf_tools -t
setenv LINK_SHARED yes
setenv PATH ${SRT_PRIVATE_CONTEXT}/shbin/${SRT_SUBDIR}/:${PATH}
======================

# Add all the code packages
addpkg beamposition v2008-11-26
addpkg btags_cert_caf v00-08-04
addpkg btags_cert v07-00-21
addpkg caf_dq p21-br-03
addpkg cafe p21-br-27
addpkg caf_eff_utils p21-br-10
addpkg cafe_sam p21-br-05
addpkg caf_mc_util p21-br-123
addpkg caf_trigger p21-br-57
addpkg caf_util p21-br-97
addpkg d0root_analysis v00-09-88
addpkg d0root_jlip v00-02-01
addpkg d0root_mva_btagger v00-00-04
addpkg d0root_nnbtag p21-br-06
addpkg d0root_sltnn p21-br-05
addpkg d0root_tmbtree v00-10-30
addpkg dq_defs v2008-09-11
addpkg dq_util p21-br-03
addpkg eff_utils p21-br-23
addpkg emid_cuts p21-br-22
addpkg emid_eff v7-preliminary-33
addpkg jetcorr p21-br-12
addpkg jetid_eff v03-00-02
addpkg lumi_profiles v2008-12-19
addpkg muid_eff v04-03-00
addpkg tau_tmb p21-br-01
addpkg tmb2ttau v00-00-02
addpkg tmb_tree p21-br-50
addpkg vjets_cafe v02-03-02
addpkg top_cafe SingleTopRecaf-Jan-23-2009

# Compile
make >& make.log &
autoroot.py tmb_tree cafe

--------additional info--
# Check status of the compilation
tail -f make.log
ps

# References
1. Victor Bazterra's email
2. https://plone4.fnal.gov/P1/D0Wiki/physics/top/single_top/setup

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...