ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/crab.csh
Revision: 1.4
Committed: Wed Mar 15 18:25:41 2006 UTC (19 years, 1 month ago) by fanzago
Content type: application/x-csh
Branch: MAIN
CVS Tags: post_cmssw_integration_20060527, pre_cmssw_integration_20060527, CRAB_1_1_0, CRAB_1_1_0_pre4, CRAB_1_1_0_pre3, CRAB_1_1_0_pre1, CRAB_1_0_7, CRAB_1_0_7_pre1
Changes since 1.3: +4 -42 lines
Log Message:
for cvs

File Contents

# User Rev Content
1 slacapra 1.1 #! /bin/csh
2     # CRAB related Stuff
3 fanzago 1.4 setenv CRABDIR `\pwd`/..
4 slacapra 1.1 setenv CRABSCRIPT ${CRABDIR}
5    
6     set CRABPATH=${CRABDIR}/python
7     set CRABPYTHON=${CRABDIR}/python
8    
9     if ( ! $?path ) then
10     set path=${CRABPATH}
11     else
12     set path=( ${CRABPATH} ${path} )
13     endif
14     if ( ! $?PYTHONPATH ) then
15     setenv PYTHONPATH ${CRABPYTHON}
16     else
17     setenv PYTHONPATH ${CRABPYTHON}:${PYTHONPATH}
18     endif
19    
20 fanzago 1.4 which boss >& /dev/null
21     if ( $? ) then
22     echo "boss env not set"
23 slacapra 1.2 endif