ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/rootEWKanalyzer/makeInputFile.sh
Revision: 1.2
Committed: Mon Sep 20 14:23:15 2010 UTC (14 years, 7 months ago) by jueugste
Content type: application/x-sh
Branch: MAIN
Changes since 1.1: +3 -3 lines
Log Message:
Update (plus EWK and HWW analysis added)

File Contents

# User Rev Content
1 jueugste 1.1 #!/bin/bash
2    
3     ## script tp generate input files from the SE
4     ## to be used with the prompt analysis framework
5    
6     ## path ti the home on the SE (should not be changed)
7     SEHOMEDIR="srm://t3se01.psi.ch:8443/srm/managerv2?SFN=/pnfs/psi.ch/cms/trivcat/store/user/jueugste"
8    
9     ## -------------------------------------------------------------
10     ## these line have to be adjusted before usage
11     ## write this input file
12 jueugste 1.2 FILE="input_Wenu_HF.txt"
13 jueugste 1.1 ## this is the directory with the input files (relative to the SEHOMEDIR)
14 jueugste 1.2 DIR="/CMSSW361patch2/MC/Wnu_HF"
15 jueugste 1.1
16     ## get the listing and keep only the path and write it to the file
17     ## append the dcap prefix to acces the data via ROOT
18 jueugste 1.2 srmls $SEHOMEDIR/$DIR | awk '/.root/ {print "dcap://t3se01.psi.ch:22125" $2}' > $FILE
19 jueugste 1.1