Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
hepsim:dev_full [2017/09/21 13:56]
hepsim17 [Creating LCIO files]
hepsim:dev_full [2017/09/21 19:18] (current)
hepsim17
Line 7: Line 7:
 In many cases, HepSim detector simulations were done using ILCSOFT-derived software, such as those used for ILC, CLIC, etc. experiments.  In many cases, HepSim detector simulations were done using ILCSOFT-derived software, such as those used for ILC, CLIC, etc. experiments. 
  
-To perform Geant4 simulations, you will need to convert PROMC to SLCIO or STDHEP files. You can convert ProMC data to STDHEP or LCIO (MCParticle) with full simulations using promc2stdhep or promc2lcio converters:+To perform Geant4 simulations, you will need to convert PROMC to SLCIO or STDHEP files. You can convert ProMC files with truth-level information to STDHEP or LCIO (MCParticle) with full simulations using promc2stdhep or promc2lcio converters:
  
 <code bash> <code bash>
Line 13: Line 13:
 tar -zvxf promc_convert.tgz tar -zvxf promc_convert.tgz
 cd promc_convert cd promc_convert
-promc2lcio.sh input.promc output.slcio    # convert to SLCIO +./promc2lcio.sh input.promc output.slcio    # convert to SLCIO 
-promc2stdhep.sh input.promc output.stdhep # convert to STDHEP+./promc2stdhep.sh input.promc output.stdhep # convert to STDHEP
 </code> </code>
 +
 +You can convert all files in a directory with ProMC files as:
 +
 +<code bash>
 +./batchconverter stdhep [DIR with ProMC files] # convert to STDHEP files
 +./batchconverter slcio  [DIR with ProMC files] # convert to LCIO files
 +</code>
 +