Difference between revisions of "Setup for Batch Job With Varying Experimental CLAS12 Quantities"

From New IAC Wiki
Jump to navigation Jump to search
(Created page with "Using CLAS12 isotropic distribution LUND files for LH2 and NH3 targets and varying incident electron energy. <pre> LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut.LUND</pre> Spliting…")
 
Line 19: Line 19:
  
 
<pre>find . -name "*.LUND" -exec sh -c 'mkdir "${1%.*}" ; mv "$1" "${1%.*}" ' _ {} \;</pre>
 
<pre>find . -name "*.LUND" -exec sh -c 'mkdir "${1%.*}" ; mv "$1" "${1%.*}" ' _ {} \;</pre>
 +
 +
[[File:Commands_builder.C]]

Revision as of 15:02, 25 August 2016

Using CLAS12 isotropic distribution LUND files for LH2 and NH3 targets and varying incident electron energy.

LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut.LUND

Spliting the LUND file into 38 parts of 3000 events, or 9000 lines

split -d -l 9000 -a 2 LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut.LUND LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut_

Naming these files LUND files

prename 's/(LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut_\d{2})/$1.LUND/' LH2_0Sol_n100Tor_11GeV_Phi10deg_ShieldOut_*

Placing each of these files into its own directory, within a directory named LH2_0Sol_p100Tor_11GeV_Phi10deg_ShieldOut

find . -name "*.LUND" -exec sh -c 'mkdir "${1%.*}" ; mv "$1" "${1%.*}" ' _ {} \;

File:Commands builder.C