We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Adding the missing generator parameters (typically dataset with the LHE step). Different cases
/eos/cms/store/lhe/$mcdb_id
xz -d -c /eos/cms/store/lhe/$mcdb_id/* > lhe.lhe awk '/<header>/,/<\/header>/' lhe.lhe > lhe_header
*GeneratorFilter
no mcdb_id
get the generator parameters from the gridpack
edmProvDump -f "externalLHEProducer LHE" root://eospublic.cern.ch/$file | grep gridpacks > line gp=$(sed "s/'/ /g" line | awk '{print $6}') if [[ $file == *"madgraph"* ]]; then tar -xf $gp ./process/madevent/Cards/run_card.dat tar -xf $gp ./process/madevent/Cards/proc_card*.dat tar -xf $gp ./process/madevent/Cards/param_card.dat mv ./process/madevent/Cards/*.dat $dir/ elif [[ $file == *"powheg"* ]]; then tar -xf $gp *.input mv *.input $dir elif [[ $file == *"amcatnlo"* ]]; then tar -xf $gp process/Cards/run_card.dat tar -xf $gp process/Cards/proc_card*.dat tar -xf $gp process/Cards/param_card.dat mv process/Cards/*.dat $dir/ fi
The text was updated successfully, but these errors were encountered:
Closing, combined with #97
Sorry, something went wrong.
No branches or pull requests
Adding the missing generator parameters (typically dataset with the LHE step).
Different cases
MINIAODSIM has mcdb_id > 1 in McM
/eos/cms/store/lhe/$mcdb_id
extract file and read the header with
GEN-SIM has no parent dataset
*GeneratorFilter
module, then that's all that is neededGEN-SIM has a parent dataset
no mcdb_id
get the generator parameters from the gridpack
The text was updated successfully, but these errors were encountered: